From c4323711460552afb00ff79bceea6ac9bd7e6877 Mon Sep 17 00:00:00 2001 From: Kingdon Barrett Date: Fri, 29 Jan 2021 19:54:50 -0500 Subject: [PATCH 1/5] add okteto.yml yarn global add cdk8s-cli --- .dockerignore | 3 +++ .gitignore | 4 ++++ .stignore | 3 +++ jenkins/runasroot-dependencies.sh | 2 ++ okteto.yml | 15 +++++++++++++++ 5 files changed, 27 insertions(+) create mode 100644 okteto.yml diff --git a/.dockerignore b/.dockerignore index 25e0a5a..554bed6 100644 --- a/.dockerignore +++ b/.dockerignore @@ -20,3 +20,6 @@ myapp-dev-ing.yaml myapp-secret-dev.yaml myapp-test-ing.yaml myapp-secret-staging.yaml +synths/imports +synths/dist +synths/node_modules diff --git a/.gitignore b/.gitignore index 09ab2f2..ef8dba4 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,7 @@ myapp-dev-ing.yaml myapp-secret-dev.yaml myapp-test-ing.yaml myapp-secret-test.yaml + +synths/imports +synths/dist +synths/node_modules diff --git a/.stignore b/.stignore index efdd753..b496f60 100644 --- a/.stignore +++ b/.stignore @@ -20,3 +20,6 @@ myapp-dev-ing.yaml myapp-secret-dev.yaml myapp-test-ing.yaml myapp-secret-staging.yaml +synths/imports +synths/dist +synths/node_modules diff --git a/jenkins/runasroot-dependencies.sh b/jenkins/runasroot-dependencies.sh index 29b7748..14752fa 100755 --- a/jenkins/runasroot-dependencies.sh +++ b/jenkins/runasroot-dependencies.sh @@ -16,6 +16,8 @@ apt-get upgrade -y --no-install-recommends # curl -sL https://deb.nodesource.com/setup_14.x | bash - # curl -o- -L https://yarnpkg.com/install.sh | bash +yarn global add cdk8s-cli + # Clean up apt-get clean rm -rf /var/lib/apt/lists/* diff --git a/okteto.yml b/okteto.yml new file mode 100644 index 0000000..b5bf4b9 --- /dev/null +++ b/okteto.yml @@ -0,0 +1,15 @@ +name: cdk-gitpusher +image: docker.io/kingdonb/cdk-gitpusher:bundler +command: [ "bash", "--login" ] +workdir: /home/rvm/app +forward: + - 3000:3000 + - 1234:1234 +persistentVolume: + enabled: true +securityContext: + runAsUser: 999 + runAsGroup: 1000 + fsGroup: 1000 +annotations: + fluxcd.io/ignore: "true" From a7584f84717015230425f9cf6aad38205d8877a8 Mon Sep 17 00:00:00 2001 From: Kingdon Barrett Date: Fri, 29 Jan 2021 19:58:24 -0500 Subject: [PATCH 2/5] cdk8s init typescript-app --- synths/__snapshots__/main.test.ts.snap | 3 + synths/cdk8s.yaml | 4 + synths/help | 23 + synths/jest.config.js | 9 + synths/main.d.ts | 5 + synths/main.js | 15 + synths/main.test.d.ts | 1 + synths/main.test.js | 13 + synths/main.test.ts | 11 + synths/main.ts | 15 + synths/package-lock.json | 5872 ++++++++++++++++++++++++ synths/package.json | 31 + synths/tsconfig.json | 33 + 13 files changed, 6035 insertions(+) create mode 100644 synths/__snapshots__/main.test.ts.snap create mode 100644 synths/cdk8s.yaml create mode 100644 synths/help create mode 100644 synths/jest.config.js create mode 100644 synths/main.d.ts create mode 100644 synths/main.js create mode 100644 synths/main.test.d.ts create mode 100644 synths/main.test.js create mode 100644 synths/main.test.ts create mode 100644 synths/main.ts create mode 100644 synths/package-lock.json create mode 100644 synths/package.json create mode 100644 synths/tsconfig.json diff --git a/synths/__snapshots__/main.test.ts.snap b/synths/__snapshots__/main.test.ts.snap new file mode 100644 index 0000000..df41477 --- /dev/null +++ b/synths/__snapshots__/main.test.ts.snap @@ -0,0 +1,3 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`Placeholder Empty 1`] = `Array []`; diff --git a/synths/cdk8s.yaml b/synths/cdk8s.yaml new file mode 100644 index 0000000..47dbd49 --- /dev/null +++ b/synths/cdk8s.yaml @@ -0,0 +1,4 @@ +language: typescript +app: node main.js +imports: + - k8s diff --git a/synths/help b/synths/help new file mode 100644 index 0000000..de601c9 --- /dev/null +++ b/synths/help @@ -0,0 +1,23 @@ +======================================================================================================== + + Your cdk8s typescript project is ready! + + cat help Print this message + + Compile: + npm run compile Compile typescript code to javascript (or "yarn watch") + npm run watch Watch for changes and compile typescript in the background + npm run build Compile + synth + + Synthesize: + npm run synth Synthesize k8s manifests from charts to dist/ (ready for 'kubectl apply -f') + + Deploy: + kubectl apply -f dist/*.k8s.yaml + + Upgrades: + npm run import Import/update k8s apis (you should check-in this directory) + npm run upgrade Upgrade cdk8s modules to latest version + npm run upgrade:next Upgrade cdk8s modules to latest "@next" version (last commit) + +======================================================================================================== diff --git a/synths/jest.config.js b/synths/jest.config.js new file mode 100644 index 0000000..bcd81f8 --- /dev/null +++ b/synths/jest.config.js @@ -0,0 +1,9 @@ +module.exports = { + "roots": [ + "" + ], + testMatch: [ '**/*.test.ts'], + "transform": { + "^.+\\.tsx?$": "ts-jest" + }, +} diff --git a/synths/main.d.ts b/synths/main.d.ts new file mode 100644 index 0000000..11534e7 --- /dev/null +++ b/synths/main.d.ts @@ -0,0 +1,5 @@ +import { Construct } from 'constructs'; +import { Chart, ChartProps } from 'cdk8s'; +export declare class MyChart extends Chart { + constructor(scope: Construct, id: string, props?: ChartProps); +} diff --git a/synths/main.js b/synths/main.js new file mode 100644 index 0000000..7bad47d --- /dev/null +++ b/synths/main.js @@ -0,0 +1,15 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.MyChart = void 0; +const cdk8s_1 = require("cdk8s"); +class MyChart extends cdk8s_1.Chart { + constructor(scope, id, props = {}) { + super(scope, id, props); + // define resources here + } +} +exports.MyChart = MyChart; +const app = new cdk8s_1.App(); +new MyChart(app, 'synths'); +app.synth(); +//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWFpbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIm1haW4udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBQ0EsaUNBQStDO0FBRS9DLE1BQWEsT0FBUSxTQUFRLGFBQUs7SUFDaEMsWUFBWSxLQUFnQixFQUFFLEVBQVUsRUFBRSxRQUFvQixFQUFHO1FBQy9ELEtBQUssQ0FBQyxLQUFLLEVBQUUsRUFBRSxFQUFFLEtBQUssQ0FBQyxDQUFDO1FBRXhCLHdCQUF3QjtJQUUxQixDQUFDO0NBQ0Y7QUFQRCwwQkFPQztBQUVELE1BQU0sR0FBRyxHQUFHLElBQUksV0FBRyxFQUFFLENBQUM7QUFDdEIsSUFBSSxPQUFPLENBQUMsR0FBRyxFQUFFLFFBQVEsQ0FBQyxDQUFDO0FBQzNCLEdBQUcsQ0FBQyxLQUFLLEVBQUUsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbnN0cnVjdCB9IGZyb20gJ2NvbnN0cnVjdHMnO1xuaW1wb3J0IHsgQXBwLCBDaGFydCwgQ2hhcnRQcm9wcyB9IGZyb20gJ2NkazhzJztcblxuZXhwb3J0IGNsYXNzIE15Q2hhcnQgZXh0ZW5kcyBDaGFydCB7XG4gIGNvbnN0cnVjdG9yKHNjb3BlOiBDb25zdHJ1Y3QsIGlkOiBzdHJpbmcsIHByb3BzOiBDaGFydFByb3BzID0geyB9KSB7XG4gICAgc3VwZXIoc2NvcGUsIGlkLCBwcm9wcyk7XG5cbiAgICAvLyBkZWZpbmUgcmVzb3VyY2VzIGhlcmVcblxuICB9XG59XG5cbmNvbnN0IGFwcCA9IG5ldyBBcHAoKTtcbm5ldyBNeUNoYXJ0KGFwcCwgJ3N5bnRocycpO1xuYXBwLnN5bnRoKCk7XG4iXX0= \ No newline at end of file diff --git a/synths/main.test.d.ts b/synths/main.test.d.ts new file mode 100644 index 0000000..cb0ff5c --- /dev/null +++ b/synths/main.test.d.ts @@ -0,0 +1 @@ +export {}; diff --git a/synths/main.test.js b/synths/main.test.js new file mode 100644 index 0000000..b5f5805 --- /dev/null +++ b/synths/main.test.js @@ -0,0 +1,13 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +const main_1 = require("./main"); +const cdk8s_1 = require("cdk8s"); +describe('Placeholder', () => { + test('Empty', () => { + const app = cdk8s_1.Testing.app(); + const chart = new main_1.MyChart(app, 'test-chart'); + const results = cdk8s_1.Testing.synth(chart); + expect(results).toMatchSnapshot(); + }); +}); +//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWFpbi50ZXN0LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsibWFpbi50ZXN0LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7O0FBQUEsaUNBQStCO0FBQy9CLGlDQUE4QjtBQUU5QixRQUFRLENBQUMsYUFBYSxFQUFFLEdBQUcsRUFBRTtJQUMzQixJQUFJLENBQUMsT0FBTyxFQUFFLEdBQUcsRUFBRTtRQUNqQixNQUFNLEdBQUcsR0FBRyxlQUFPLENBQUMsR0FBRyxFQUFFLENBQUM7UUFDMUIsTUFBTSxLQUFLLEdBQUcsSUFBSSxjQUFPLENBQUMsR0FBRyxFQUFFLFlBQVksQ0FBQyxDQUFDO1FBQzdDLE1BQU0sT0FBTyxHQUFHLGVBQU8sQ0FBQyxLQUFLLENBQUMsS0FBSyxDQUFDLENBQUE7UUFDcEMsTUFBTSxDQUFDLE9BQU8sQ0FBQyxDQUFDLGVBQWUsRUFBRSxDQUFDO0lBQ3BDLENBQUMsQ0FBQyxDQUFDO0FBQ0wsQ0FBQyxDQUFDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge015Q2hhcnR9IGZyb20gJy4vbWFpbic7XG5pbXBvcnQge1Rlc3Rpbmd9IGZyb20gJ2NkazhzJztcblxuZGVzY3JpYmUoJ1BsYWNlaG9sZGVyJywgKCkgPT4ge1xuICB0ZXN0KCdFbXB0eScsICgpID0+IHtcbiAgICBjb25zdCBhcHAgPSBUZXN0aW5nLmFwcCgpO1xuICAgIGNvbnN0IGNoYXJ0ID0gbmV3IE15Q2hhcnQoYXBwLCAndGVzdC1jaGFydCcpO1xuICAgIGNvbnN0IHJlc3VsdHMgPSBUZXN0aW5nLnN5bnRoKGNoYXJ0KVxuICAgIGV4cGVjdChyZXN1bHRzKS50b01hdGNoU25hcHNob3QoKTtcbiAgfSk7XG59KTtcbiJdfQ== \ No newline at end of file diff --git a/synths/main.test.ts b/synths/main.test.ts new file mode 100644 index 0000000..5851e33 --- /dev/null +++ b/synths/main.test.ts @@ -0,0 +1,11 @@ +import {MyChart} from './main'; +import {Testing} from 'cdk8s'; + +describe('Placeholder', () => { + test('Empty', () => { + const app = Testing.app(); + const chart = new MyChart(app, 'test-chart'); + const results = Testing.synth(chart) + expect(results).toMatchSnapshot(); + }); +}); diff --git a/synths/main.ts b/synths/main.ts new file mode 100644 index 0000000..3817255 --- /dev/null +++ b/synths/main.ts @@ -0,0 +1,15 @@ +import { Construct } from 'constructs'; +import { App, Chart, ChartProps } from 'cdk8s'; + +export class MyChart extends Chart { + constructor(scope: Construct, id: string, props: ChartProps = { }) { + super(scope, id, props); + + // define resources here + + } +} + +const app = new App(); +new MyChart(app, 'synths'); +app.synth(); diff --git a/synths/package-lock.json b/synths/package-lock.json new file mode 100644 index 0000000..9b74606 --- /dev/null +++ b/synths/package-lock.json @@ -0,0 +1,5872 @@ +{ + "name": "synths", + "version": "1.0.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "@babel/code-frame": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", + "dev": true, + "requires": { + "@babel/highlight": "^7.10.4" + } + }, + "@babel/core": { + "version": "7.12.10", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.10.tgz", + "integrity": "sha512-eTAlQKq65zHfkHZV0sIVODCPGVgoo1HdBlbSLi9CqOzuZanMv2ihzY+4paiKr1mH+XmYESMAmJ/dpZ68eN6d8w==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.10.4", + "@babel/generator": "^7.12.10", + "@babel/helper-module-transforms": "^7.12.1", + "@babel/helpers": "^7.12.5", + "@babel/parser": "^7.12.10", + "@babel/template": "^7.12.7", + "@babel/traverse": "^7.12.10", + "@babel/types": "^7.12.10", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "semver": "^5.4.1", + "source-map": "^0.5.0" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } + } + }, + "@babel/generator": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.11.tgz", + "integrity": "sha512-Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA==", + "dev": true, + "requires": { + "@babel/types": "^7.12.11", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "dependencies": { + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } + } + }, + "@babel/helper-function-name": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.11.tgz", + "integrity": "sha512-AtQKjtYNolKNi6nNNVLQ27CP6D9oFR6bq/HPYSizlzbp7uC1M59XJe8L+0uXjbIaZaUJF99ruHqVGiKXU/7ybA==", + "dev": true, + "requires": { + "@babel/helper-get-function-arity": "^7.12.10", + "@babel/template": "^7.12.7", + "@babel/types": "^7.12.11" + } + }, + "@babel/helper-get-function-arity": { + "version": "7.12.10", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.10.tgz", + "integrity": "sha512-mm0n5BPjR06wh9mPQaDdXWDoll/j5UpCAPl1x8fS71GHm7HA6Ua2V4ylG1Ju8lvcTOietbPNNPaSilKj+pj+Ag==", + "dev": true, + "requires": { + "@babel/types": "^7.12.10" + } + }, + "@babel/helper-member-expression-to-functions": { + "version": "7.12.7", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.7.tgz", + "integrity": "sha512-DCsuPyeWxeHgh1Dus7APn7iza42i/qXqiFPWyBDdOFtvS581JQePsc1F/nD+fHrcswhLlRc2UpYS1NwERxZhHw==", + "dev": true, + "requires": { + "@babel/types": "^7.12.7" + } + }, + "@babel/helper-module-imports": { + "version": "7.12.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz", + "integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==", + "dev": true, + "requires": { + "@babel/types": "^7.12.5" + } + }, + "@babel/helper-module-transforms": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz", + "integrity": "sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.12.1", + "@babel/helper-replace-supers": "^7.12.1", + "@babel/helper-simple-access": "^7.12.1", + "@babel/helper-split-export-declaration": "^7.11.0", + "@babel/helper-validator-identifier": "^7.10.4", + "@babel/template": "^7.10.4", + "@babel/traverse": "^7.12.1", + "@babel/types": "^7.12.1", + "lodash": "^4.17.19" + } + }, + "@babel/helper-optimise-call-expression": { + "version": "7.12.10", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.10.tgz", + "integrity": "sha512-4tpbU0SrSTjjt65UMWSrUOPZTsgvPgGG4S8QSTNHacKzpS51IVWGDj0yCwyeZND/i+LSN2g/O63jEXEWm49sYQ==", + "dev": true, + "requires": { + "@babel/types": "^7.12.10" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz", + "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==", + "dev": true + }, + "@babel/helper-replace-supers": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.11.tgz", + "integrity": "sha512-q+w1cqmhL7R0FNzth/PLLp2N+scXEK/L2AHbXUyydxp828F4FEa5WcVoqui9vFRiHDQErj9Zof8azP32uGVTRA==", + "dev": true, + "requires": { + "@babel/helper-member-expression-to-functions": "^7.12.7", + "@babel/helper-optimise-call-expression": "^7.12.10", + "@babel/traverse": "^7.12.10", + "@babel/types": "^7.12.11" + } + }, + "@babel/helper-simple-access": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz", + "integrity": "sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==", + "dev": true, + "requires": { + "@babel/types": "^7.12.1" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.11.tgz", + "integrity": "sha512-LsIVN8j48gHgwzfocYUSkO/hjYAOJqlpJEc7tGXcIm4cubjVUf8LGW6eWRyxEu7gA25q02p0rQUWoCI33HNS5g==", + "dev": true, + "requires": { + "@babel/types": "^7.12.11" + } + }, + "@babel/helper-validator-identifier": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", + "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==", + "dev": true + }, + "@babel/helpers": { + "version": "7.12.5", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.5.tgz", + "integrity": "sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA==", + "dev": true, + "requires": { + "@babel/template": "^7.10.4", + "@babel/traverse": "^7.12.5", + "@babel/types": "^7.12.5" + } + }, + "@babel/highlight": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz", + "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.10.4", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "@babel/parser": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.11.tgz", + "integrity": "sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg==", + "dev": true + }, + "@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==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@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, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-class-properties": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.1.tgz", + "integrity": "sha512-U40A76x5gTwmESz+qiqssqmeEsKvcSyvtgktrm0uzcARAmM9I1jR221f6Oq+GmHrcD+LvZDag1UTOTe2fL3TeA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "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==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "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==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "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==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "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==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "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==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "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==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-top-level-await": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.1.tgz", + "integrity": "sha512-i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/template": { + "version": "7.12.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.12.7.tgz", + "integrity": "sha512-GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.10.4", + "@babel/parser": "^7.12.7", + "@babel/types": "^7.12.7" + } + }, + "@babel/traverse": { + "version": "7.12.12", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.12.tgz", + "integrity": "sha512-s88i0X0lPy45RrLM8b9mz8RPH5FqO9G9p7ti59cToE44xFm1Q+Pjh5Gq4SXBbtb88X7Uy7pexeqRIQDDMNkL0w==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.12.11", + "@babel/generator": "^7.12.11", + "@babel/helper-function-name": "^7.12.11", + "@babel/helper-split-export-declaration": "^7.12.11", + "@babel/parser": "^7.12.11", + "@babel/types": "^7.12.12", + "debug": "^4.1.0", + "globals": "^11.1.0", + "lodash": "^4.17.19" + } + }, + "@babel/types": { + "version": "7.12.12", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz", + "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.12.11", + "lodash": "^4.17.19", + "to-fast-properties": "^2.0.0" + } + }, + "@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "dev": true + }, + "@cnakazawa/watch": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz", + "integrity": "sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==", + "dev": true, + "requires": { + "exec-sh": "^0.3.2", + "minimist": "^1.2.0" + } + }, + "@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, + "requires": { + "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" + }, + "dependencies": { + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + } + } + }, + "@istanbuljs/schema": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.2.tgz", + "integrity": "sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw==", + "dev": true + }, + "@jest/console": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-26.6.2.tgz", + "integrity": "sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g==", + "dev": true, + "requires": { + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^26.6.2", + "jest-util": "^26.6.2", + "slash": "^3.0.0" + } + }, + "@jest/core": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-26.6.3.tgz", + "integrity": "sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==", + "dev": true, + "requires": { + "@jest/console": "^26.6.2", + "@jest/reporters": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "jest-changed-files": "^26.6.2", + "jest-config": "^26.6.3", + "jest-haste-map": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-resolve": "^26.6.2", + "jest-resolve-dependencies": "^26.6.3", + "jest-runner": "^26.6.3", + "jest-runtime": "^26.6.3", + "jest-snapshot": "^26.6.2", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "jest-watcher": "^26.6.2", + "micromatch": "^4.0.2", + "p-each-series": "^2.1.0", + "rimraf": "^3.0.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + } + }, + "@jest/environment": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-26.6.2.tgz", + "integrity": "sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA==", + "dev": true, + "requires": { + "@jest/fake-timers": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "jest-mock": "^26.6.2" + } + }, + "@jest/fake-timers": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-26.6.2.tgz", + "integrity": "sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA==", + "dev": true, + "requires": { + "@jest/types": "^26.6.2", + "@sinonjs/fake-timers": "^6.0.1", + "@types/node": "*", + "jest-message-util": "^26.6.2", + "jest-mock": "^26.6.2", + "jest-util": "^26.6.2" + } + }, + "@jest/globals": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-26.6.2.tgz", + "integrity": "sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA==", + "dev": true, + "requires": { + "@jest/environment": "^26.6.2", + "@jest/types": "^26.6.2", + "expect": "^26.6.2" + } + }, + "@jest/reporters": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-26.6.2.tgz", + "integrity": "sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw==", + "dev": true, + "requires": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.2", + "graceful-fs": "^4.2.4", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^4.0.3", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.0.2", + "jest-haste-map": "^26.6.2", + "jest-resolve": "^26.6.2", + "jest-util": "^26.6.2", + "jest-worker": "^26.6.2", + "node-notifier": "^8.0.0", + "slash": "^3.0.0", + "source-map": "^0.6.0", + "string-length": "^4.0.1", + "terminal-link": "^2.0.0", + "v8-to-istanbul": "^7.0.0" + } + }, + "@jest/source-map": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-26.6.2.tgz", + "integrity": "sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA==", + "dev": true, + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.2.4", + "source-map": "^0.6.0" + } + }, + "@jest/test-result": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-26.6.2.tgz", + "integrity": "sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==", + "dev": true, + "requires": { + "@jest/console": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + } + }, + "@jest/test-sequencer": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-26.6.3.tgz", + "integrity": "sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==", + "dev": true, + "requires": { + "@jest/test-result": "^26.6.2", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^26.6.2", + "jest-runner": "^26.6.3", + "jest-runtime": "^26.6.3" + } + }, + "@jest/transform": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-26.6.2.tgz", + "integrity": "sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==", + "dev": true, + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^26.6.2", + "babel-plugin-istanbul": "^6.0.0", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-util": "^26.6.2", + "micromatch": "^4.0.2", + "pirates": "^4.0.1", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + } + }, + "@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + } + }, + "@jsii/spec": { + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/@jsii/spec/-/spec-1.18.0.tgz", + "integrity": "sha512-NtIvTyKBFCpwmZpCX76WtIks+W6I0Rbo94SvDuLsMGV8KBgiIEfgLP47P57vKxaJkXLNiINMjFBOSTDwF3bWKg==", + "dev": true, + "requires": { + "jsonschema": "^1.4.0" + } + }, + "@sinonjs/commons": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.2.tgz", + "integrity": "sha512-sruwd86RJHdsVf/AtBoijDmUqJp3B6hF/DGC23C+JaegnDHaZyewCjoVGTdg3J0uz3Zs7NnIT05OBOmML72lQw==", + "dev": true, + "requires": { + "type-detect": "4.0.8" + } + }, + "@sinonjs/fake-timers": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz", + "integrity": "sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==", + "dev": true, + "requires": { + "@sinonjs/commons": "^1.7.0" + } + }, + "@types/babel__core": { + "version": "7.1.12", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.12.tgz", + "integrity": "sha512-wMTHiiTiBAAPebqaPiPDLFA4LYPKr6Ph0Xq/6rq1Ur3v66HXyG+clfR9CNETkD7MQS8ZHvpQOtA53DLws5WAEQ==", + "dev": true, + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "@types/babel__generator": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.2.tgz", + "integrity": "sha512-MdSJnBjl+bdwkLskZ3NGFp9YcXGx5ggLpQQPqtgakVhsWK0hTtNYhjpZLlWQTviGTvF8at+Bvli3jV7faPdgeQ==", + "dev": true, + "requires": { + "@babel/types": "^7.0.0" + } + }, + "@types/babel__template": { + "version": "7.4.0", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.0.tgz", + "integrity": "sha512-NTPErx4/FiPCGScH7foPyr+/1Dkzkni+rHiYHHoTjvwou7AQzJkNeD60A9CXRy+ZEN2B1bggmkTMCDb+Mv5k+A==", + "dev": true, + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "@types/babel__traverse": { + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.11.0.tgz", + "integrity": "sha512-kSjgDMZONiIfSH1Nxcr5JIRMwUetDki63FSQfpTCz8ogF3Ulqm8+mr5f78dUYs6vMiB6gBusQqfQmBvHZj/lwg==", + "dev": true, + "requires": { + "@babel/types": "^7.3.0" + } + }, + "@types/graceful-fs": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.4.tgz", + "integrity": "sha512-mWA/4zFQhfvOA8zWkXobwJvBD7vzcxgrOQ0J5CH1votGqdq9m7+FwtGaqyCZqC3NyyBkc9z4m+iry4LlqcMWJg==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz", + "integrity": "sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==", + "dev": true + }, + "@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "*" + } + }, + "@types/istanbul-reports": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz", + "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==", + "dev": true, + "requires": { + "@types/istanbul-lib-report": "*" + } + }, + "@types/jest": { + "version": "26.0.20", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-26.0.20.tgz", + "integrity": "sha512-9zi2Y+5USJRxd0FsahERhBwlcvFh6D2GLQnY2FH2BzK8J9s9omvNHIbvABwIluXa0fD8XVKMLTO0aOEuUfACAA==", + "dev": true, + "requires": { + "jest-diff": "^26.0.0", + "pretty-format": "^26.0.0" + } + }, + "@types/node": { + "version": "14.14.22", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.22.tgz", + "integrity": "sha512-g+f/qj/cNcqKkc3tFqlXOYjrmZA+jNBiDzbP3kH+B+otKFqAdPgVTGP1IeKRdMml/aE69as5S4FqtxAbl+LaMw==", + "dev": true + }, + "@types/normalize-package-data": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz", + "integrity": "sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==", + "dev": true + }, + "@types/prettier": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.1.6.tgz", + "integrity": "sha512-6gOkRe7OIioWAXfnO/2lFiv+SJichKVSys1mSsgyrYHSEjk8Ctv4tSR/Odvnu+HWlH2C8j53dahU03XmQdd5fA==", + "dev": true + }, + "@types/stack-utils": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.0.tgz", + "integrity": "sha512-RJJrrySY7A8havqpGObOB4W92QXKJo63/jFLLgpvOtsGUqbQZ9Sbgl35KMm1DjC6j7AvmmU2bIno+3IyEaemaw==", + "dev": true + }, + "@types/yargs": { + "version": "15.0.13", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.13.tgz", + "integrity": "sha512-kQ5JNTrbDv3Rp5X2n/iUu37IJBDU2gsZ5R/g1/KHOOEc5IKfUFjXT6DENPGduh08I/pamwtEq4oul7gUqKTQDQ==", + "dev": true, + "requires": { + "@types/yargs-parser": "*" + } + }, + "@types/yargs-parser": { + "version": "20.2.0", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-20.2.0.tgz", + "integrity": "sha512-37RSHht+gzzgYeobbG+KWryeAW8J33Nhr69cjTqSYymXVZEN9NbRYWoYlRtDhHKPVT1FyNKwaTPC1NynKZpzRA==", + "dev": true + }, + "abab": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz", + "integrity": "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==", + "dev": true + }, + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true + }, + "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, + "requires": { + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1" + } + }, + "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 + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ansi-escapes": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.1.tgz", + "integrity": "sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA==", + "dev": true, + "requires": { + "type-fest": "^0.11.0" + }, + "dependencies": { + "type-fest": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.11.0.tgz", + "integrity": "sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==", + "dev": true + } + } + }, + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", + "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "anymatch": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz", + "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==", + "dev": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", + "dev": true + }, + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "dev": true + }, + "arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", + "dev": true + }, + "array-filter": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-filter/-/array-filter-1.0.0.tgz", + "integrity": "sha1-uveeYubvTCpMC4MSMtr/7CUfnYM=", + "dev": true + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", + "dev": true + }, + "asn1": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", + "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", + "dev": true, + "requires": { + "safer-buffer": "~2.1.0" + } + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "dev": true + }, + "assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", + "dev": true + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", + "dev": true + }, + "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==", + "dev": true + }, + "atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "dev": true + }, + "available-typed-arrays": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.2.tgz", + "integrity": "sha512-XWX3OX8Onv97LMk/ftVyBibpGwY5a8SmuxZPzeOxqmuEqUCOM9ZE+uIaD1VNJ5QnvU2UQusvmKbuM1FR8QWGfQ==", + "dev": true, + "requires": { + "array-filter": "^1.0.0" + } + }, + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", + "dev": true + }, + "aws4": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", + "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==", + "dev": true + }, + "babel-jest": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-26.6.3.tgz", + "integrity": "sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==", + "dev": true, + "requires": { + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/babel__core": "^7.1.7", + "babel-plugin-istanbul": "^6.0.0", + "babel-preset-jest": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "slash": "^3.0.0" + } + }, + "babel-plugin-istanbul": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz", + "integrity": "sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^4.0.0", + "test-exclude": "^6.0.0" + } + }, + "babel-plugin-jest-hoist": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-26.6.2.tgz", + "integrity": "sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==", + "dev": true, + "requires": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.0.0", + "@types/babel__traverse": "^7.0.6" + } + }, + "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, + "requires": { + "@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" + } + }, + "babel-preset-jest": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-26.6.2.tgz", + "integrity": "sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==", + "dev": true, + "requires": { + "babel-plugin-jest-hoist": "^26.6.2", + "babel-preset-current-node-syntax": "^1.0.0" + } + }, + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true + }, + "base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "dev": true, + "requires": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", + "dev": true, + "requires": { + "tweetnacl": "^0.14.3" + } + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "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 + }, + "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, + "requires": { + "fast-json-stable-stringify": "2.x" + } + }, + "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, + "requires": { + "node-int64": "^0.4.0" + } + }, + "buffer-from": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", + "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==", + "dev": true + }, + "cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "dev": true, + "requires": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + } + }, + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true + }, + "camelcase": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz", + "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==", + "dev": true + }, + "capture-exit": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz", + "integrity": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==", + "dev": true, + "requires": { + "rsvp": "^4.8.4" + } + }, + "case": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/case/-/case-1.6.3.tgz", + "integrity": "sha512-mzDSXIPaFwVDvZAHqZ9VlbyF4yyXRuX6IvB06WvPYkqJVO24kX1PPhv9bfpKNFZyxYFmmgo03HUiD8iklmJYRQ==", + "dev": true + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", + "dev": true + }, + "cdk8s": { + "version": "1.0.0-beta.6", + "resolved": "https://registry.npmjs.org/cdk8s/-/cdk8s-1.0.0-beta.6.tgz", + "integrity": "sha512-L/J8c7/wSEY2POx5j9SnxxgEJ7V7mFYS3F9pGj2idUfj4GCHbMLCGXQ8bAPzaiWOFSEDVMOPBOangLEia+5RBw==", + "requires": { + "fast-json-patch": "^3.0.0-1", + "follow-redirects": "^1.13.1", + "json-stable-stringify": "^1.0.1", + "yaml": "2.0.0-1" + }, + "dependencies": { + "fast-json-patch": { + "version": "3.0.0-1", + "bundled": true + }, + "follow-redirects": { + "version": "1.13.1", + "bundled": true + }, + "json-stable-stringify": { + "version": "1.0.1", + "bundled": true, + "requires": { + "jsonify": "~0.0.0" + } + }, + "jsonify": { + "version": "0.0.0", + "bundled": true + }, + "yaml": { + "version": "2.0.0-1", + "bundled": true + } + } + }, + "cdk8s-cli": { + "version": "1.0.0-beta.6", + "resolved": "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-1.0.0-beta.6.tgz", + "integrity": "sha512-x6sJTGaSPoyQbcKbxkKxmgdGXLpyO+qbgt6GgN9guIk28dgkoqZG9CcfmwjAs+OXoY4ZiyNKvNO4w9ljW/+XOQ==", + "dev": true, + "requires": { + "@types/node": "^10.17.50", + "cdk8s": "1.0.0-beta.6", + "codemaker": "^1.16.0", + "colors": "^1.4.0", + "constructs": "^3.2.34", + "fs-extra": "^8.1.0", + "jsii-pacmak": "^1.16.0", + "jsii-srcmak": "^0.1.178", + "json2jsii": "^0.1.169", + "sscaff": "^1.2.0", + "yaml": "^1.10.0", + "yargs": "^15.4.1" + }, + "dependencies": { + "@types/node": { + "version": "10.17.51", + "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.51.tgz", + "integrity": "sha512-KANw+MkL626tq90l++hGelbl67irOJzGhUJk6a1Bt8QHOeh9tztJx+L0AqttraWKinmZn7Qi5lJZJzx45Gq0dg==", + "dev": true + } + } + }, + "cdk8s-plus-17": { + "version": "1.0.0-beta.6", + "resolved": "https://registry.npmjs.org/cdk8s-plus-17/-/cdk8s-plus-17-1.0.0-beta.6.tgz", + "integrity": "sha512-dWUQQs5MZIaYTA6JPNRLkmFqCyepnbA4pDpWGV3fe50rGoi97yg0hvEYkzbGMwh4DFyD4pJTTyZHDCCGnrmdbA==", + "requires": { + "minimatch": "^3.0.4" + }, + "dependencies": { + "balanced-match": { + "version": "1.0.0", + "bundled": true + }, + "brace-expansion": { + "version": "1.1.11", + "bundled": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "concat-map": { + "version": "0.0.1", + "bundled": true + }, + "minimatch": { + "version": "3.0.4", + "bundled": true, + "requires": { + "brace-expansion": "^1.1.7" + } + } + } + }, + "chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "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==", + "dev": true + }, + "ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", + "dev": true + }, + "cjs-module-lexer": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-0.6.0.tgz", + "integrity": "sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw==", + "dev": true + }, + "class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dev": true, + "requires": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + } + } + }, + "cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=", + "dev": true + }, + "co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", + "dev": true + }, + "codemaker": { + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/codemaker/-/codemaker-1.18.0.tgz", + "integrity": "sha512-sUVEg7pzW5HlWvC8OZvMoon9+8LZXA+5dIAqJD8GleosY16UOlOY2MlbLldRa34PXfqCODrXlktTbH93AELgHg==", + "dev": true, + "requires": { + "camelcase": "^6.2.0", + "decamelize": "^5.0.0", + "fs-extra": "^9.1.0" + }, + "dependencies": { + "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==", + "dev": true, + "requires": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + } + } + }, + "collect-v8-coverage": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", + "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", + "dev": true + }, + "collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "dev": true, + "requires": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + } + }, + "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==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "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==", + "dev": true + }, + "colors": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", + "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==", + "dev": true + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "commonmark": { + "version": "0.29.3", + "resolved": "https://registry.npmjs.org/commonmark/-/commonmark-0.29.3.tgz", + "integrity": "sha512-fvt/NdOFKaL2gyhltSy6BC4LxbbxbnPxBMl923ittqO/JBM0wQHaoYZliE4tp26cRxX/ZZtRsJlZzQrVdUkXAA==", + "dev": true, + "requires": { + "entities": "~2.0", + "mdurl": "~1.0.1", + "minimist": ">=1.2.2", + "string.prototype.repeat": "^0.2.0" + } + }, + "component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + }, + "constructs": { + "version": "3.2.117", + "resolved": "https://registry.npmjs.org/constructs/-/constructs-3.2.117.tgz", + "integrity": "sha512-zYDlALAHWdopUzMGr3aZPlPR8f+OEYr1+QZCkLqi/eyUjbOmlPQ6xwrlDoOaJNgpMf727T9Yo+hokCjIRsZweQ==" + }, + "convert-source-map": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz", + "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.1" + } + }, + "copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", + "dev": true + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } + } + }, + "cssom": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", + "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==", + "dev": true + }, + "cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "dev": true, + "requires": { + "cssom": "~0.3.6" + }, + "dependencies": { + "cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "dev": true + } + } + }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "dev": true, + "requires": { + "assert-plus": "^1.0.0" + } + }, + "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, + "requires": { + "abab": "^2.0.3", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.0.0" + } + }, + "date-format": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/date-format/-/date-format-3.0.0.tgz", + "integrity": "sha512-eyTcpKOcamdhWJXj56DpQMo1ylSQpcGtGKXcU0Tb97+K56/CF5amAqqqNj0+KvA0iw2ynxtHWFsPDSClCxe48w==", + "dev": true + }, + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", + "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "decamelize": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-5.0.0.tgz", + "integrity": "sha512-U75DcT5hrio3KNtvdULAWnLiAPbFUC4191ldxMmj4FA/mRuBnmDwU0boNfPyFRhnan+Jm+haLeSn3P0afcBn4w==", + "dev": true + }, + "decimal.js": { + "version": "10.2.1", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.2.1.tgz", + "integrity": "sha512-KaL7+6Fw6i5A2XSnsbhm/6B+NuEA7TZ4vqxnd5tXz9sbKtrN9Srj8ab4vKVdK8YAqZO9P1kg45Y6YLoduPf+kw==", + "dev": true + }, + "decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", + "dev": true + }, + "deep-equal": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.0.5.tgz", + "integrity": "sha512-nPiRgmbAtm1a3JsnLCf6/SLfXcjyN5v8L1TXzdCmHrXJ4hx+gW/w1YCcn7z8gJtSiDArZCgYtbao3QqLm/N1Sw==", + "dev": true, + "requires": { + "call-bind": "^1.0.0", + "es-get-iterator": "^1.1.1", + "get-intrinsic": "^1.0.1", + "is-arguments": "^1.0.4", + "is-date-object": "^1.0.2", + "is-regex": "^1.1.1", + "isarray": "^2.0.5", + "object-is": "^1.1.4", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "regexp.prototype.flags": "^1.3.0", + "side-channel": "^1.0.3", + "which-boxed-primitive": "^1.0.1", + "which-collection": "^1.0.1", + "which-typed-array": "^1.1.2" + } + }, + "deep-is": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", + "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", + "dev": true + }, + "deepmerge": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", + "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==", + "dev": true + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "dev": true, + "requires": { + "object-keys": "^1.0.12" + } + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": { + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", + "dev": true + }, + "detect-indent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-5.0.0.tgz", + "integrity": "sha1-OHHMCmoALow+Wzz38zYmRnXwa50=", + "dev": true + }, + "detect-newline": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-2.1.0.tgz", + "integrity": "sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I=", + "dev": true + }, + "diff-sequences": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-26.6.2.tgz", + "integrity": "sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==", + "dev": true + }, + "domexception": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", + "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", + "dev": true, + "requires": { + "webidl-conversions": "^5.0.0" + }, + "dependencies": { + "webidl-conversions": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", + "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", + "dev": true + } + } + }, + "dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dev": true, + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", + "dev": true, + "requires": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "emittery": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.7.2.tgz", + "integrity": "sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ==", + "dev": true + }, + "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 + }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "requires": { + "once": "^1.4.0" + } + }, + "entities": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.0.3.tgz", + "integrity": "sha512-MyoZ0jgnLvB2X3Lg5HqpFmn1kybDiIfEQmKzTb5apr51Rb+T3KdmMiqa70T+bhGnyv7bQ6WMj2QMHpGMmlrUYQ==", + "dev": true + }, + "error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "requires": { + "is-arrayish": "^0.2.1" + } + }, + "es-abstract": { + "version": "1.18.0-next.2", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.2.tgz", + "integrity": "sha512-Ih4ZMFHEtZupnUh6497zEL4y2+w8+1ljnCyaTa+adcoafI1GOvMwFlDjBLfWR7y9VLfrjRJe9ocuHY1PSR9jjw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2", + "has": "^1.0.3", + "has-symbols": "^1.0.1", + "is-callable": "^1.2.2", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.1", + "object-inspect": "^1.9.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.3", + "string.prototype.trimstart": "^1.0.3" + } + }, + "es-get-iterator": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.2.tgz", + "integrity": "sha512-+DTO8GYwbMCwbywjimwZMHp8AuYXOS2JZFWoi2AlPOS3ebnII9w/NLpNZtA7A0YLaVDw+O7KFCeoIV7OPvM7hQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.0", + "has-symbols": "^1.0.1", + "is-arguments": "^1.1.0", + "is-map": "^2.0.2", + "is-set": "^2.0.2", + "is-string": "^1.0.5", + "isarray": "^2.0.5" + } + }, + "es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dev": true, + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true + }, + "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==", + "dev": true + }, + "escodegen": { + "version": "1.14.3", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", + "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", + "dev": true, + "requires": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1", + "source-map": "~0.6.1" + } + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true + }, + "exec-sh": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.4.tgz", + "integrity": "sha512-sEFIkc61v75sWeOe72qyrqg2Qg0OuLESziUDk/O/z2qgS15y2gWVFrI6f2Qn/qw/0/NCfCEsmNA4zOjkwEZT1A==", + "dev": true + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dev": true, + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + } + }, + "exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=", + "dev": true + }, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "dev": true, + "requires": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "expect": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/expect/-/expect-26.6.2.tgz", + "integrity": "sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA==", + "dev": true, + "requires": { + "@jest/types": "^26.6.2", + "ansi-styles": "^4.0.0", + "jest-get-type": "^26.3.0", + "jest-matcher-utils": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-regex-util": "^26.0.0" + } + }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dev": true + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dev": true, + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", + "dev": true + }, + "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==", + "dev": true + }, + "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==", + "dev": true + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "dev": true + }, + "fb-watchman": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz", + "integrity": "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==", + "dev": true, + "requires": { + "bser": "2.1.1" + } + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "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, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "flatted": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz", + "integrity": "sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==", + "dev": true + }, + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", + "dev": true + }, + "foreach": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz", + "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=", + "dev": true + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", + "dev": true + }, + "form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "dev": true, + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + } + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", + "dev": true, + "requires": { + "map-cache": "^0.2.2" + } + }, + "fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "dependencies": { + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true + } + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "fsevents": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.1.tgz", + "integrity": "sha512-YR47Eg4hChJGAB1O3yEAOkGO+rlzutoICGqGo9EZ4lKWokzZRSyIW1QmTzqjtw8MJdj9srP869CuWw/hyzSiBw==", + "dev": true, + "optional": true + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "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==", + "dev": true + }, + "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==", + "dev": true + }, + "get-intrinsic": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.0.tgz", + "integrity": "sha512-M11rgtQp5GZMZzDL7jLTNxbDfurpzuau5uqRWDPvlHjfvg3TdScAZo96GLvhMjImrmR8uAt0FS2RLoMrfWGKlg==", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + } + }, + "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 + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", + "dev": true + }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "dev": true, + "requires": { + "assert-plus": "^1.0.0" + } + }, + "glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true + }, + "graceful-fs": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz", + "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==", + "dev": true + }, + "growly": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz", + "integrity": "sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=", + "dev": true, + "optional": true + }, + "har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", + "dev": true + }, + "har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", + "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", + "dev": true, + "requires": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + } + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "has-symbols": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz", + "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==", + "dev": true + }, + "has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", + "dev": true, + "requires": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + } + }, + "has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "dependencies": { + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "hosted-git-info": { + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz", + "integrity": "sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==", + "dev": true + }, + "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, + "requires": { + "whatwg-encoding": "^1.0.5" + } + }, + "html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true + }, + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "dev": true, + "requires": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + } + }, + "human-signals": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", + "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", + "dev": true + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "import-local": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.0.2.tgz", + "integrity": "sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA==", + "dev": true, + "requires": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "ip-regex": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", + "integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=", + "dev": true + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-arguments": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.0.tgz", + "integrity": "sha512-1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg==", + "dev": true, + "requires": { + "call-bind": "^1.0.0" + } + }, + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "dev": true + }, + "is-bigint": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.1.tgz", + "integrity": "sha512-J0ELF4yHFxHy0cmSxZuheDOz2luOdVvqjwmEcj8H/L1JHeuEDSDbeRP+Dk9kFVk5RTFzbucJ2Kb9F7ixY2QaCg==", + "dev": true + }, + "is-boolean-object": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.0.tgz", + "integrity": "sha512-a7Uprx8UtD+HWdyYwnD1+ExtTgqQtD2k/1yJgtXP6wnMm8byhkoTZRl+95LLThpzNZJ5aEvi46cdH+ayMFRwmA==", + "dev": true, + "requires": { + "call-bind": "^1.0.0" + } + }, + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "is-callable": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.2.tgz", + "integrity": "sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA==", + "dev": true + }, + "is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "dev": true, + "requires": { + "ci-info": "^2.0.0" + } + }, + "is-core-module": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.2.0.tgz", + "integrity": "sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ==", + "dev": true, + "requires": { + "has": "^1.0.3" + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-date-object": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz", + "integrity": "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==", + "dev": true + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "dependencies": { + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true + } + } + }, + "is-docker": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.1.1.tgz", + "integrity": "sha512-ZOoqiXfEwtGknTiuDEy8pN2CfE3TxMHprvNer1mXiqwkOT77Rw3YVrUQ52EqAOU3QAWDQ+bQdx7HJzrv7LS2Hw==", + "dev": true, + "optional": true + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "dev": true + }, + "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==", + "dev": true + }, + "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 + }, + "is-map": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", + "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", + "dev": true + }, + "is-negative-zero": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", + "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==", + "dev": true + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "is-number-object": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.4.tgz", + "integrity": "sha512-zohwelOAur+5uXtk8O3GPQ1eAcu4ZX3UwxQhUlfFFMNpUd83gXgjbhJh6HmB6LUNV/ieOLQuDwJO3dWJosUeMw==", + "dev": true + }, + "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==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "is-potential-custom-element-name": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.0.tgz", + "integrity": "sha1-DFLlS8yjkbssSUsh6GJtczbG45c=", + "dev": true + }, + "is-regex": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz", + "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==", + "dev": true, + "requires": { + "has-symbols": "^1.0.1" + } + }, + "is-set": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", + "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", + "dev": true + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "dev": true + }, + "is-string": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz", + "integrity": "sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==", + "dev": true + }, + "is-symbol": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz", + "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==", + "dev": true, + "requires": { + "has-symbols": "^1.0.1" + } + }, + "is-typed-array": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.4.tgz", + "integrity": "sha512-ILaRgn4zaSrVNXNGtON6iFNotXW3hAPF3+0fB1usg2jFlWqo5fEDdmJkz0zBfoi7Dgskr8Khi2xZ8cXqZEfXNA==", + "dev": true, + "requires": { + "available-typed-arrays": "^1.0.2", + "call-bind": "^1.0.0", + "es-abstract": "^1.18.0-next.1", + "foreach": "^2.0.5", + "has-symbols": "^1.0.1" + } + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", + "dev": true + }, + "is-weakmap": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", + "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", + "dev": true + }, + "is-weakset": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.1.tgz", + "integrity": "sha512-pi4vhbhVHGLxohUw7PhGsueT4vRGFoXhP7+RGN0jKIv9+8PWYCQTqtADngrxOm2g46hoH0+g8uZZBzMrvVGDmw==", + "dev": true + }, + "is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true + }, + "is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dev": true, + "optional": true, + "requires": { + "is-docker": "^2.0.0" + } + }, + "isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", + "dev": true + }, + "istanbul-lib-coverage": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz", + "integrity": "sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==", + "dev": true + }, + "istanbul-lib-instrument": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz", + "integrity": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==", + "dev": true, + "requires": { + "@babel/core": "^7.7.5", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.0.0", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "dev": true, + "requires": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" + } + }, + "istanbul-lib-source-maps": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz", + "integrity": "sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg==", + "dev": true, + "requires": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + } + }, + "istanbul-reports": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.0.2.tgz", + "integrity": "sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw==", + "dev": true, + "requires": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + } + }, + "jest": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest/-/jest-26.6.3.tgz", + "integrity": "sha512-lGS5PXGAzR4RF7V5+XObhqz2KZIDUA1yD0DG6pBVmy10eh0ZIXQImRuzocsI/N2XZ1GrLFwTS27In2i2jlpq1Q==", + "dev": true, + "requires": { + "@jest/core": "^26.6.3", + "import-local": "^3.0.2", + "jest-cli": "^26.6.3" + }, + "dependencies": { + "jest-cli": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-26.6.3.tgz", + "integrity": "sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg==", + "dev": true, + "requires": { + "@jest/core": "^26.6.3", + "@jest/test-result": "^26.6.2", + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "import-local": "^3.0.2", + "is-ci": "^2.0.0", + "jest-config": "^26.6.3", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "prompts": "^2.0.1", + "yargs": "^15.4.1" + } + } + } + }, + "jest-changed-files": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-26.6.2.tgz", + "integrity": "sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ==", + "dev": true, + "requires": { + "@jest/types": "^26.6.2", + "execa": "^4.0.0", + "throat": "^5.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "execa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", + "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + } + }, + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "is-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz", + "integrity": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==", + "dev": true + }, + "npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "requires": { + "path-key": "^3.0.0" + } + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "jest-config": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-26.6.3.tgz", + "integrity": "sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg==", + "dev": true, + "requires": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^26.6.3", + "@jest/types": "^26.6.2", + "babel-jest": "^26.6.3", + "chalk": "^4.0.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.1", + "graceful-fs": "^4.2.4", + "jest-environment-jsdom": "^26.6.2", + "jest-environment-node": "^26.6.2", + "jest-get-type": "^26.3.0", + "jest-jasmine2": "^26.6.3", + "jest-regex-util": "^26.0.0", + "jest-resolve": "^26.6.2", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "micromatch": "^4.0.2", + "pretty-format": "^26.6.2" + } + }, + "jest-diff": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-26.6.2.tgz", + "integrity": "sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==", + "dev": true, + "requires": { + "chalk": "^4.0.0", + "diff-sequences": "^26.6.2", + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + } + }, + "jest-docblock": { + "version": "26.0.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-26.0.0.tgz", + "integrity": "sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w==", + "dev": true, + "requires": { + "detect-newline": "^3.0.0" + }, + "dependencies": { + "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 + } + } + }, + "jest-each": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-26.6.2.tgz", + "integrity": "sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A==", + "dev": true, + "requires": { + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "jest-get-type": "^26.3.0", + "jest-util": "^26.6.2", + "pretty-format": "^26.6.2" + } + }, + "jest-environment-jsdom": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-26.6.2.tgz", + "integrity": "sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q==", + "dev": true, + "requires": { + "@jest/environment": "^26.6.2", + "@jest/fake-timers": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "jest-mock": "^26.6.2", + "jest-util": "^26.6.2", + "jsdom": "^16.4.0" + } + }, + "jest-environment-node": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-26.6.2.tgz", + "integrity": "sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag==", + "dev": true, + "requires": { + "@jest/environment": "^26.6.2", + "@jest/fake-timers": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "jest-mock": "^26.6.2", + "jest-util": "^26.6.2" + } + }, + "jest-get-type": { + "version": "26.3.0", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz", + "integrity": "sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==", + "dev": true + }, + "jest-haste-map": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-26.6.2.tgz", + "integrity": "sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==", + "dev": true, + "requires": { + "@jest/types": "^26.6.2", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "fsevents": "^2.1.2", + "graceful-fs": "^4.2.4", + "jest-regex-util": "^26.0.0", + "jest-serializer": "^26.6.2", + "jest-util": "^26.6.2", + "jest-worker": "^26.6.2", + "micromatch": "^4.0.2", + "sane": "^4.0.3", + "walker": "^1.0.7" + } + }, + "jest-jasmine2": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-26.6.3.tgz", + "integrity": "sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==", + "dev": true, + "requires": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^26.6.2", + "@jest/source-map": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "expect": "^26.6.2", + "is-generator-fn": "^2.0.0", + "jest-each": "^26.6.2", + "jest-matcher-utils": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-runtime": "^26.6.3", + "jest-snapshot": "^26.6.2", + "jest-util": "^26.6.2", + "pretty-format": "^26.6.2", + "throat": "^5.0.0" + } + }, + "jest-leak-detector": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-26.6.2.tgz", + "integrity": "sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg==", + "dev": true, + "requires": { + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + } + }, + "jest-matcher-utils": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-26.6.2.tgz", + "integrity": "sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw==", + "dev": true, + "requires": { + "chalk": "^4.0.0", + "jest-diff": "^26.6.2", + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + } + }, + "jest-message-util": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-26.6.2.tgz", + "integrity": "sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/types": "^26.6.2", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "micromatch": "^4.0.2", + "pretty-format": "^26.6.2", + "slash": "^3.0.0", + "stack-utils": "^2.0.2" + } + }, + "jest-mock": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-26.6.2.tgz", + "integrity": "sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew==", + "dev": true, + "requires": { + "@jest/types": "^26.6.2", + "@types/node": "*" + } + }, + "jest-pnp-resolver": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz", + "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==", + "dev": true + }, + "jest-regex-util": { + "version": "26.0.0", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-26.0.0.tgz", + "integrity": "sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==", + "dev": true + }, + "jest-resolve": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz", + "integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==", + "dev": true, + "requires": { + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^26.6.2", + "read-pkg-up": "^7.0.1", + "resolve": "^1.18.1", + "slash": "^3.0.0" + } + }, + "jest-resolve-dependencies": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-26.6.3.tgz", + "integrity": "sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg==", + "dev": true, + "requires": { + "@jest/types": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-snapshot": "^26.6.2" + } + }, + "jest-runner": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-26.6.3.tgz", + "integrity": "sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ==", + "dev": true, + "requires": { + "@jest/console": "^26.6.2", + "@jest/environment": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.7.1", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "jest-config": "^26.6.3", + "jest-docblock": "^26.0.0", + "jest-haste-map": "^26.6.2", + "jest-leak-detector": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-resolve": "^26.6.2", + "jest-runtime": "^26.6.3", + "jest-util": "^26.6.2", + "jest-worker": "^26.6.2", + "source-map-support": "^0.5.6", + "throat": "^5.0.0" + } + }, + "jest-runtime": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-26.6.3.tgz", + "integrity": "sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw==", + "dev": true, + "requires": { + "@jest/console": "^26.6.2", + "@jest/environment": "^26.6.2", + "@jest/fake-timers": "^26.6.2", + "@jest/globals": "^26.6.2", + "@jest/source-map": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0", + "cjs-module-lexer": "^0.6.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.4", + "jest-config": "^26.6.3", + "jest-haste-map": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-mock": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-resolve": "^26.6.2", + "jest-snapshot": "^26.6.2", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "slash": "^3.0.0", + "strip-bom": "^4.0.0", + "yargs": "^15.4.1" + } + }, + "jest-serializer": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-26.6.2.tgz", + "integrity": "sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==", + "dev": true, + "requires": { + "@types/node": "*", + "graceful-fs": "^4.2.4" + } + }, + "jest-snapshot": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-26.6.2.tgz", + "integrity": "sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==", + "dev": true, + "requires": { + "@babel/types": "^7.0.0", + "@jest/types": "^26.6.2", + "@types/babel__traverse": "^7.0.4", + "@types/prettier": "^2.0.0", + "chalk": "^4.0.0", + "expect": "^26.6.2", + "graceful-fs": "^4.2.4", + "jest-diff": "^26.6.2", + "jest-get-type": "^26.3.0", + "jest-haste-map": "^26.6.2", + "jest-matcher-utils": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-resolve": "^26.6.2", + "natural-compare": "^1.4.0", + "pretty-format": "^26.6.2", + "semver": "^7.3.2" + } + }, + "jest-util": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz", + "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==", + "dev": true, + "requires": { + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "is-ci": "^2.0.0", + "micromatch": "^4.0.2" + } + }, + "jest-validate": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-26.6.2.tgz", + "integrity": "sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==", + "dev": true, + "requires": { + "@jest/types": "^26.6.2", + "camelcase": "^6.0.0", + "chalk": "^4.0.0", + "jest-get-type": "^26.3.0", + "leven": "^3.1.0", + "pretty-format": "^26.6.2" + } + }, + "jest-watcher": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-26.6.2.tgz", + "integrity": "sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ==", + "dev": true, + "requires": { + "@jest/test-result": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "jest-util": "^26.6.2", + "string-length": "^4.0.1" + } + }, + "jest-worker": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", + "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", + "dev": true, + "requires": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + } + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "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, + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", + "dev": true + }, + "jsdom": { + "version": "16.4.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.4.0.tgz", + "integrity": "sha512-lYMm3wYdgPhrl7pDcRmvzPhhrGVBeVhPIqeHjzeiHN3DFmD1RBpbExbi8vU7BJdH8VAZYovR8DMt0PNNDM7k8w==", + "dev": true, + "requires": { + "abab": "^2.0.3", + "acorn": "^7.1.1", + "acorn-globals": "^6.0.0", + "cssom": "^0.4.4", + "cssstyle": "^2.2.0", + "data-urls": "^2.0.0", + "decimal.js": "^10.2.0", + "domexception": "^2.0.1", + "escodegen": "^1.14.1", + "html-encoding-sniffer": "^2.0.1", + "is-potential-custom-element-name": "^1.0.0", + "nwsapi": "^2.2.0", + "parse5": "5.1.1", + "request": "^2.88.2", + "request-promise-native": "^1.0.8", + "saxes": "^5.0.0", + "symbol-tree": "^3.2.4", + "tough-cookie": "^3.0.1", + "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.0.0", + "ws": "^7.2.3", + "xml-name-validator": "^3.0.0" + } + }, + "jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true + }, + "jsii": { + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/jsii/-/jsii-1.18.0.tgz", + "integrity": "sha512-5s+kOLF9yJOWjJD3UyaRYGT/PGaPvs0hNBDMtZqJ5AH8yIgjfJz+3+eHDXPLK0ffGaZF83sysiUueA5+Stxkww==", + "dev": true, + "requires": { + "@jsii/spec": "^1.18.0", + "case": "^1.6.3", + "colors": "^1.4.0", + "deep-equal": "^2.0.5", + "fs-extra": "^9.1.0", + "log4js": "^6.3.0", + "semver": "^7.3.4", + "semver-intersect": "^1.4.0", + "sort-json": "^2.0.0", + "spdx-license-list": "^6.4.0", + "typescript": "~3.9.7", + "yargs": "^16.2.0" + }, + "dependencies": { + "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==", + "dev": true, + "requires": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "typescript": { + "version": "3.9.7", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.7.tgz", + "integrity": "sha512-BLbiRkiBzAwsjut4x/dsibSTB6yWpwT5qWmC2OfuCg3GgVQCSgMs4vEctYPhsaGtd0AeuuHMkjZ2h2WG8MSzRw==", + "dev": true + }, + "yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + } + } + } + }, + "jsii-pacmak": { + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.18.0.tgz", + "integrity": "sha512-j1gRTaCn+IQ1R2a2uLqCfohY+unI/hD8Zedw9TOCTBjpASDDbDd9DMbOGnQBZ9G2nRq4SUIPg5eVOKPovpTI+w==", + "dev": true, + "requires": { + "@jsii/spec": "^1.18.0", + "clone": "^2.1.2", + "codemaker": "^1.18.0", + "commonmark": "^0.29.3", + "escape-string-regexp": "^4.0.0", + "fs-extra": "^9.1.0", + "jsii-reflect": "^1.18.0", + "jsii-rosetta": "^1.18.0", + "semver": "^7.3.4", + "spdx-license-list": "^6.4.0", + "xmlbuilder": "^15.1.1", + "yargs": "^16.2.0" + }, + "dependencies": { + "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==", + "dev": true, + "requires": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + } + } + } + }, + "jsii-reflect": { + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.18.0.tgz", + "integrity": "sha512-IXLdYl+zWVeUModJT51bOIgPjHGhnk8W/LxBMxIIN+VpFHkcPiZX1P7MfOCWIermAkrxVQOHpPbWEKoeUFl7CQ==", + "dev": true, + "requires": { + "@jsii/spec": "^1.18.0", + "colors": "^1.4.0", + "fs-extra": "^9.1.0", + "oo-ascii-tree": "^1.18.0", + "yargs": "^16.2.0" + }, + "dependencies": { + "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==", + "dev": true, + "requires": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + } + } + } + }, + "jsii-rosetta": { + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.18.0.tgz", + "integrity": "sha512-gPBt689vGjR9CqmfYHusSsFr/v4v9qcJAKaCqc3uan2nGCe/lugxR416YnhkpsVQBZdT+H4EA2Lp+yjqj9kMUw==", + "dev": true, + "requires": { + "@jsii/spec": "^1.18.0", + "commonmark": "^0.29.3", + "fs-extra": "^9.1.0", + "typescript": "~3.9.7", + "xmldom": "^0.4.0", + "yargs": "^16.2.0" + }, + "dependencies": { + "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==", + "dev": true, + "requires": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "typescript": { + "version": "3.9.7", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.7.tgz", + "integrity": "sha512-BLbiRkiBzAwsjut4x/dsibSTB6yWpwT5qWmC2OfuCg3GgVQCSgMs4vEctYPhsaGtd0AeuuHMkjZ2h2WG8MSzRw==", + "dev": true + }, + "yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + } + } + } + }, + "jsii-srcmak": { + "version": "0.1.210", + "resolved": "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.210.tgz", + "integrity": "sha512-p9G4DcJIjJXo1LSLFe/lISXB9ijwfSMd/CUWtTWsUo2muVEsaKl8IE7YAiTDiKiP3OTswvzHmqa5DZ1pobLkzg==", + "dev": true, + "requires": { + "fs-extra": "^9.0.1", + "jsii": "^1.12.0", + "jsii-pacmak": "^1.12.0", + "ncp": "^2.0.0", + "yargs": "^15.4.1" + }, + "dependencies": { + "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==", + "dev": true, + "requires": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + } + } + }, + "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==", + "dev": true + }, + "json-schema": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.5.tgz", + "integrity": "sha512-gWJOWYFrhQ8j7pVm0EM8Slr+EPVq1Phf6lvzvD/WCeqkrx/f2xBI0xOsRRS9xCn3I4vKtP519dvs3TP09r24wQ==", + "dev": true + }, + "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 + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", + "dev": true + }, + "json2jsii": { + "version": "0.1.188", + "resolved": "https://registry.npmjs.org/json2jsii/-/json2jsii-0.1.188.tgz", + "integrity": "sha512-XeUcBQl0rngTFmiSIx0XNW+g0QgAJcqwsUYzvGcDPPSvPngIGmJ/X6d0UH/nDmSVyEilYyKnVP7iYh3y9by9fA==", + "dev": true, + "requires": { + "camelcase": "^6.2.0", + "json-schema": "^0.2.5", + "snake-case": "^3.0.4" + } + }, + "json5": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz", + "integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "jsonschema": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/jsonschema/-/jsonschema-1.4.0.tgz", + "integrity": "sha512-/YgW6pRMr6M7C+4o8kS+B/2myEpHCrxO4PEWnqJNBFMjn7EWXqlQ4tGwL6xTHeRplwuZmcAncdvfOad1nT2yMw==", + "dev": true + }, + "jsprim": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", + "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "dev": true, + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + }, + "dependencies": { + "json-schema": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", + "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=", + "dev": true + } + } + }, + "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==", + "dev": true + }, + "kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "dev": true + }, + "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==", + "dev": true + }, + "levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "dev": true, + "requires": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + } + }, + "lines-and-columns": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz", + "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=", + "dev": true + }, + "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, + "requires": { + "p-locate": "^4.1.0" + } + }, + "lodash": { + "version": "4.17.20", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz", + "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==", + "dev": true + }, + "lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=", + "dev": true + }, + "log4js": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/log4js/-/log4js-6.3.0.tgz", + "integrity": "sha512-Mc8jNuSFImQUIateBFwdOQcmC6Q5maU0VVvdC2R6XMb66/VnT+7WS4D/0EeNMZu1YODmJe5NIn2XftCzEocUgw==", + "dev": true, + "requires": { + "date-format": "^3.0.0", + "debug": "^4.1.1", + "flatted": "^2.0.1", + "rfdc": "^1.1.4", + "streamroller": "^2.2.4" + } + }, + "lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dev": true, + "requires": { + "tslib": "^2.0.3" + } + }, + "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==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "requires": { + "semver": "^6.0.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "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 + }, + "makeerror": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.11.tgz", + "integrity": "sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=", + "dev": true, + "requires": { + "tmpl": "1.0.x" + } + }, + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", + "dev": true + }, + "map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", + "dev": true, + "requires": { + "object-visit": "^1.0.0" + } + }, + "mdurl": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", + "integrity": "sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4=", + "dev": true + }, + "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==", + "dev": true + }, + "micromatch": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz", + "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==", + "dev": true, + "requires": { + "braces": "^3.0.1", + "picomatch": "^2.0.5" + } + }, + "mime-db": { + "version": "1.45.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.45.0.tgz", + "integrity": "sha512-CkqLUxUk15hofLoLyljJSrukZi8mAtgd+yE5uO4tqRZsdsAJKv0O+rFMhVDRJgozy+yG6md5KwuXhD4ocIoP+w==", + "dev": true + }, + "mime-types": { + "version": "2.1.28", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.28.tgz", + "integrity": "sha512-0TO2yJ5YHYr7M2zzT7gDU1tbwHxEUWBCLt0lscSNpcdAfFyJOVEpRYNS7EXVcTLNj/25QO8gulHC5JtTzSE2UQ==", + "dev": true, + "requires": { + "mime-db": "1.45.0" + } + }, + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", + "dev": true + }, + "mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "dev": true, + "requires": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + } + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", + "dev": true + }, + "ncp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz", + "integrity": "sha1-GVoh1sRuNh0vsSgbo4uR6d9727M=", + "dev": true + }, + "nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "dev": true + }, + "no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dev": true, + "requires": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=", + "dev": true + }, + "node-modules-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz", + "integrity": "sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=", + "dev": true + }, + "node-notifier": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-8.0.1.tgz", + "integrity": "sha512-BvEXF+UmsnAfYfoapKM9nGxnP+Wn7P91YfXmrKnfcYCx6VBeoN5Ez5Ogck6I8Bi5k4RlpqRYaw75pAwzX9OphA==", + "dev": true, + "optional": true, + "requires": { + "growly": "^1.3.0", + "is-wsl": "^2.2.0", + "semver": "^7.3.2", + "shellwords": "^0.1.1", + "uuid": "^8.3.0", + "which": "^2.0.2" + }, + "dependencies": { + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "optional": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } + } + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "dev": true, + "requires": { + "path-key": "^2.0.0" + } + }, + "nwsapi": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz", + "integrity": "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==", + "dev": true + }, + "oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", + "dev": true + }, + "object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", + "dev": true, + "requires": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "object-inspect": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz", + "integrity": "sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==", + "dev": true + }, + "object-is": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.4.tgz", + "integrity": "sha512-1ZvAZ4wlF7IyPVOcE1Omikt7UpaFlOQq0HlSti+ZvDH3UiD2brwGMwDbyV43jao2bKJ+4+WdPJHSd7kgzKYVqg==", + "dev": true, + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3" + } + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true + }, + "object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", + "dev": true, + "requires": { + "isobject": "^3.0.0" + } + }, + "object.assign": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", + "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + } + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "requires": { + "mimic-fn": "^2.1.0" + } + }, + "oo-ascii-tree": { + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.18.0.tgz", + "integrity": "sha512-++zVwRSnfwwx8BRBfPz7xdKUnOf7RYeX1RTklO37btNcbHPvRlKSZ9o1/D9SRGzmHf3lV4zKVbYTN1VOWfQvjA==", + "dev": true + }, + "optionator": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "dev": true, + "requires": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + } + }, + "p-each-series": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-2.2.0.tgz", + "integrity": "sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==", + "dev": true + }, + "p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", + "dev": true + }, + "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, + "requires": { + "p-try": "^2.0.0" + } + }, + "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, + "requires": { + "p-limit": "^2.2.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, + "parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + } + }, + "parse5": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.1.tgz", + "integrity": "sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==", + "dev": true + }, + "pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", + "dev": true + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true + }, + "path-parse": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", + "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==", + "dev": true + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=", + "dev": true + }, + "picomatch": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", + "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==", + "dev": true + }, + "pirates": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.1.tgz", + "integrity": "sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==", + "dev": true, + "requires": { + "node-modules-regexp": "^1.0.0" + } + }, + "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, + "requires": { + "find-up": "^4.0.0" + } + }, + "posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", + "dev": true + }, + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", + "dev": true + }, + "pretty-format": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", + "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", + "dev": true, + "requires": { + "@jest/types": "^26.6.2", + "ansi-regex": "^5.0.0", + "ansi-styles": "^4.0.0", + "react-is": "^17.0.1" + } + }, + "prompts": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.0.tgz", + "integrity": "sha512-awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm/HBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ==", + "dev": true, + "requires": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + } + }, + "psl": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", + "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==", + "dev": true + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "dev": true + }, + "qs": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", + "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", + "dev": true + }, + "react-is": { + "version": "17.0.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.1.tgz", + "integrity": "sha512-NAnt2iGDXohE5LI7uBnLnqvLQMtzhkiAOLXTmv+qnF9Ky7xAPcX8Up/xWIhxvLVGJvuLiNc4xQLtuqDRzb4fSA==", + "dev": true + }, + "read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "dev": true, + "requires": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "dependencies": { + "type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "dev": true + } + } + }, + "read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dev": true, + "requires": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + } + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dev": true, + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + } + }, + "regexp.prototype.flags": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz", + "integrity": "sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", + "dev": true + }, + "repeat-element": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz", + "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==", + "dev": true + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "dev": true + }, + "request": { + "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "dev": true, + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "dependencies": { + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "dev": true, + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "dev": true + } + } + }, + "request-promise-core": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.4.tgz", + "integrity": "sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==", + "dev": true, + "requires": { + "lodash": "^4.17.19" + } + }, + "request-promise-native": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.9.tgz", + "integrity": "sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==", + "dev": true, + "requires": { + "request-promise-core": "1.1.4", + "stealthy-require": "^1.1.1", + "tough-cookie": "^2.3.3" + }, + "dependencies": { + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "dev": true, + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + } + } + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", + "dev": true + }, + "require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "dev": true + }, + "resolve": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz", + "integrity": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==", + "dev": true, + "requires": { + "is-core-module": "^2.1.0", + "path-parse": "^1.0.6" + } + }, + "resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "requires": { + "resolve-from": "^5.0.0" + } + }, + "resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true + }, + "resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", + "dev": true + }, + "ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "dev": true + }, + "rfdc": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.2.0.tgz", + "integrity": "sha512-ijLyszTMmUrXvjSooucVQwimGUk84eRcmCuLV8Xghe3UO85mjUtRAHRyoMM6XtyqbECaXuBWx18La3523sXINA==", + "dev": true + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "rsvp": { + "version": "4.8.5", + "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz", + "integrity": "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==", + "dev": true + }, + "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==", + "dev": true + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "dev": true, + "requires": { + "ret": "~0.1.10" + } + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "sane": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz", + "integrity": "sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==", + "dev": true, + "requires": { + "@cnakazawa/watch": "^1.0.3", + "anymatch": "^2.0.0", + "capture-exit": "^2.0.0", + "exec-sh": "^0.3.2", + "execa": "^1.0.0", + "fb-watchman": "^2.0.0", + "micromatch": "^3.1.4", + "minimist": "^1.1.1", + "walker": "~1.0.5" + }, + "dependencies": { + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dev": true, + "requires": { + "remove-trailing-separator": "^1.0.1" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "saxes": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", + "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", + "dev": true, + "requires": { + "xmlchars": "^2.2.0" + } + }, + "semver": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "semver-intersect": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/semver-intersect/-/semver-intersect-1.4.0.tgz", + "integrity": "sha512-d8fvGg5ycKAq0+I6nfWeCx6ffaWJCsBYU0H2Rq56+/zFePYfT8mXkB3tWBSjR5BerkHNZ5eTPIk1/LBYas35xQ==", + "dev": true, + "requires": { + "semver": "^5.0.0" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } + } + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", + "dev": true + }, + "set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true + }, + "shellwords": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz", + "integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==", + "dev": true, + "optional": true + }, + "side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dev": true, + "requires": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + } + }, + "signal-exit": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", + "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==", + "dev": true + }, + "sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true + }, + "snake-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz", + "integrity": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==", + "dev": true, + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "dev": true, + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } + } + }, + "snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "dev": true, + "requires": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "dev": true, + "requires": { + "kind-of": "^3.2.0" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "sort-json": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/sort-json/-/sort-json-2.0.0.tgz", + "integrity": "sha512-OgXPErPJM/rBK5OhzIJ+etib/BmLQ1JY55Nb/ElhoWUec62pXNF/X6DrecHq3NW5OAGX0KxYD7m0HtgB9dvGeA==", + "dev": true, + "requires": { + "detect-indent": "^5.0.0", + "detect-newline": "^2.1.0", + "minimist": "^1.2.0" + } + }, + "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 + }, + "source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "dev": true, + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "source-map-support": { + "version": "0.5.19", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", + "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "source-map-url": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz", + "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=", + "dev": true + }, + "spdx-correct": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", + "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", + "dev": true, + "requires": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "dev": true + }, + "spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-license-ids": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz", + "integrity": "sha512-U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ==", + "dev": true + }, + "spdx-license-list": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/spdx-license-list/-/spdx-license-list-6.4.0.tgz", + "integrity": "sha512-4BxgJ1IZxTJuX1YxMGu2cRYK46Bk9zJNTK2/R0wNZR0cm+6SVl26/uG7FQmQtxoJQX1uZ0EpTi2L7zvMLboaBA==", + "dev": true + }, + "split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "dev": true, + "requires": { + "extend-shallow": "^3.0.0" + } + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "dev": true + }, + "sscaff": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/sscaff/-/sscaff-1.2.0.tgz", + "integrity": "sha512-Xyf2tWLnO0Z297FKag0e8IXFIpnYRWZ3FBn4dN2qlMRsOcpf0P54FPhvdcb1Es0Fm4hbhYYXa23jR+VPGPQhSg==", + "dev": true + }, + "sshpk": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", + "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", + "dev": true, + "requires": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + } + }, + "stack-utils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.3.tgz", + "integrity": "sha512-gL//fkxfWUsIlFL2Tl42Cl6+HFALEaB1FU76I/Fy+oZjRreP7OPMXFlGbxM7NQsI0ZpUfw76sHnv0WNYuTb7Iw==", + "dev": true, + "requires": { + "escape-string-regexp": "^2.0.0" + }, + "dependencies": { + "escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true + } + } + }, + "static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", + "dev": true, + "requires": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + } + } + }, + "stealthy-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", + "integrity": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=", + "dev": true + }, + "streamroller": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/streamroller/-/streamroller-2.2.4.tgz", + "integrity": "sha512-OG79qm3AujAM9ImoqgWEY1xG4HX+Lw+yY6qZj9R1K2mhF5bEmQ849wvrb+4vt4jLMLzwXttJlQbOdPOQVRv7DQ==", + "dev": true, + "requires": { + "date-format": "^2.1.0", + "debug": "^4.1.1", + "fs-extra": "^8.1.0" + }, + "dependencies": { + "date-format": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/date-format/-/date-format-2.1.0.tgz", + "integrity": "sha512-bYQuGLeFxhkxNOF3rcMtiZxvCBAquGzZm6oWA1oZ0g2THUzivaRhv8uOhdr19LmoobSOLoIAxeUK2RdbM8IFTA==", + "dev": true + } + } + }, + "string-length": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.1.tgz", + "integrity": "sha512-PKyXUd0LK0ePjSOnWn34V2uD6acUWev9uy0Ft05k0E8xRW+SKcA0F7eMr7h5xlzfn+4O3N+55rduYyet3Jk+jw==", + "dev": true, + "requires": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + } + }, + "string-width": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", + "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + } + }, + "string.prototype.repeat": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-0.2.0.tgz", + "integrity": "sha1-q6Nt4I3O5qWjN9SbLqHaGyj8Ds8=", + "dev": true + }, + "string.prototype.trimend": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz", + "integrity": "sha512-ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw==", + "dev": true, + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3" + } + }, + "string.prototype.trimstart": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.3.tgz", + "integrity": "sha512-oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg==", + "dev": true, + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3" + } + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.0" + } + }, + "strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "dev": true + }, + "strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", + "dev": true + }, + "strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true + }, + "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, + "requires": { + "has-flag": "^4.0.0" + } + }, + "supports-hyperlinks": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.1.0.tgz", + "integrity": "sha512-zoE5/e+dnEijk6ASB6/qrK+oYdm2do1hjoLWrqUC/8WEIW1gbxFcKuBof7sW8ArN6e+AYvsE8HBGiVRWL/F5CA==", + "dev": true, + "requires": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + } + }, + "symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", + "dev": true + }, + "terminal-link": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", + "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", + "dev": true, + "requires": { + "ansi-escapes": "^4.2.1", + "supports-hyperlinks": "^2.0.0" + } + }, + "test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "requires": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + } + }, + "throat": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/throat/-/throat-5.0.0.tgz", + "integrity": "sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==", + "dev": true + }, + "tmpl": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz", + "integrity": "sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE=", + "dev": true + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", + "dev": true + }, + "to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "dev": true, + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + } + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + }, + "tough-cookie": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-3.0.1.tgz", + "integrity": "sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg==", + "dev": true, + "requires": { + "ip-regex": "^2.1.0", + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + }, + "tr46": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.0.2.tgz", + "integrity": "sha512-3n1qG+/5kg+jrbTzwAykB5yRYtQCTqOGKq5U5PE3b0a1/mzo6snDhjGS0zJVJunO0NrT3Dg1MLy5TjWP/UJppg==", + "dev": true, + "requires": { + "punycode": "^2.1.1" + } + }, + "ts-jest": { + "version": "26.5.0", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-26.5.0.tgz", + "integrity": "sha512-Ya4IQgvIFNa2Mgq52KaO8yBw2W8tWp61Ecl66VjF0f5JaV8u50nGoptHVILOPGoI7SDnShmEqnYQEmyHdQ+56g==", + "dev": true, + "requires": { + "@types/jest": "26.x", + "bs-logger": "0.x", + "buffer-from": "1.x", + "fast-json-stable-stringify": "2.x", + "jest-util": "^26.1.0", + "json5": "2.x", + "lodash": "4.x", + "make-error": "1.x", + "mkdirp": "1.x", + "semver": "7.x", + "yargs-parser": "20.x" + } + }, + "tslib": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.1.0.tgz", + "integrity": "sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==", + "dev": true + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "dev": true, + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", + "dev": true + }, + "type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "dev": true, + "requires": { + "prelude-ls": "~1.1.2" + } + }, + "type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "dev": true + }, + "type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true + }, + "typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "dev": true, + "requires": { + "is-typedarray": "^1.0.0" + } + }, + "typescript": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.1.3.tgz", + "integrity": "sha512-B3ZIOf1IKeH2ixgHhj6la6xdwR9QrLC5d1VKeCSY4tvkqhF2eqd9O7txNlS0PO3GrBAFIdr3L1ndNwteUbZLYg==", + "dev": true + }, + "union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "dev": true, + "requires": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + } + }, + "universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "dev": true + }, + "unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", + "dev": true, + "requires": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "dependencies": { + "has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", + "dev": true, + "requires": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "dependencies": { + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "dev": true, + "requires": { + "isarray": "1.0.0" + } + } + } + }, + "has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + } + } + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", + "dev": true + }, + "use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "dev": true + }, + "uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "dev": true, + "optional": true + }, + "v8-to-istanbul": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-7.1.0.tgz", + "integrity": "sha512-uXUVqNUCLa0AH1vuVxzi+MI4RfxEOKt9pBgKwHbgH7st8Kv2P1m+jvWNnektzBh5QShF3ODgKmUFCf38LnVz1g==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0", + "source-map": "^0.7.3" + }, + "dependencies": { + "source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "dev": true + } + } + }, + "validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, + "requires": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "dev": true, + "requires": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "w3c-hr-time": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", + "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", + "dev": true, + "requires": { + "browser-process-hrtime": "^1.0.0" + } + }, + "w3c-xmlserializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", + "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", + "dev": true, + "requires": { + "xml-name-validator": "^3.0.0" + } + }, + "walker": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz", + "integrity": "sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=", + "dev": true, + "requires": { + "makeerror": "1.0.x" + } + }, + "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 + }, + "whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", + "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", + "dev": true, + "requires": { + "iconv-lite": "0.4.24" + } + }, + "whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", + "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==", + "dev": true + }, + "whatwg-url": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.4.0.tgz", + "integrity": "sha512-vwTUFf6V4zhcPkWp/4CQPr1TW9Ml6SF4lVyaIMBdJw5i6qUUJ1QWM4Z6YYVkfka0OUIzVo/0aNtGVGk256IKWw==", + "dev": true, + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^2.0.2", + "webidl-conversions": "^6.1.0" + } + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dev": true, + "requires": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + } + }, + "which-collection": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", + "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", + "dev": true, + "requires": { + "is-map": "^2.0.1", + "is-set": "^2.0.1", + "is-weakmap": "^2.0.1", + "is-weakset": "^2.0.1" + } + }, + "which-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", + "dev": true + }, + "which-typed-array": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.4.tgz", + "integrity": "sha512-49E0SpUe90cjpoc7BOJwyPHRqSAd12c10Qm2amdEZrJPCY2NDxaW01zHITrem+rnETY3dwrbH3UUrUwagfCYDA==", + "dev": true, + "requires": { + "available-typed-arrays": "^1.0.2", + "call-bind": "^1.0.0", + "es-abstract": "^1.18.0-next.1", + "foreach": "^2.0.5", + "function-bind": "^1.1.1", + "has-symbols": "^1.0.1", + "is-typed-array": "^1.1.3" + } + }, + "word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "dev": true + }, + "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, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "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==", + "dev": true, + "requires": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "ws": { + "version": "7.4.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.2.tgz", + "integrity": "sha512-T4tewALS3+qsrpGI/8dqNMLIVdq/g/85U98HPMa6F0m6xTbvhXU6RCQLqPH3+SlomNV/LdY6RXEbBpMH6EOJnA==", + "dev": true + }, + "xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==", + "dev": true + }, + "xmlbuilder": { + "version": "15.1.1", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-15.1.1.tgz", + "integrity": "sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==", + "dev": true + }, + "xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", + "dev": true + }, + "xmldom": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/xmldom/-/xmldom-0.4.0.tgz", + "integrity": "sha512-2E93k08T30Ugs+34HBSTQLVtpi6mCddaY8uO+pMNk1pqSjV5vElzn4mmh6KLxN3hki8rNcHSYzILoh3TEWORvA==", + "dev": true + }, + "y18n": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.5.tgz", + "integrity": "sha512-hsRUr4FFrvhhRH12wOdfs38Gy7k2FFzB9qgN9v3aLykRq0dRcdcpz5C9FxdS2NuhOrI/628b/KSTJ3rwHysYSg==", + "dev": true + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "yaml": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.0.tgz", + "integrity": "sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg==", + "dev": true + }, + "yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "dev": true, + "requires": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + }, + "dependencies": { + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, + "cliui": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "dev": true + }, + "wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, + "y18n": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz", + "integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==", + "dev": true + }, + "yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "dev": true, + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + } + } + }, + "yargs-parser": { + "version": "20.2.4", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz", + "integrity": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==", + "dev": true + } + } +} diff --git a/synths/package.json b/synths/package.json new file mode 100644 index 0000000..8c1b4cc --- /dev/null +++ b/synths/package.json @@ -0,0 +1,31 @@ +{ + "name": "synths", + "version": "1.0.0", + "main": "main.js", + "types": "main.ts", + "license": "Apache-2.0", + "private": true, + "scripts": { + "import": "cdk8s import", + "synth": "cdk8s synth", + "compile": "tsc", + "watch": "tsc -w", + "test": "jest", + "build": "npm run compile && npm run test && npm run synth", + "upgrade": "npm i cdk8s@latest cdk8s-cli@latest", + "upgrade:next": "npm i cdk8s@next cdk8s-cli@next" + }, + "dependencies": { + "cdk8s": "^1.0.0-beta.6", + "cdk8s-plus-17": "^1.0.0-beta.6", + "constructs": "^3.2.117" + }, + "devDependencies": { + "@types/jest": "^26.0.20", + "@types/node": "^14.14.22", + "cdk8s-cli": "^1.0.0-beta.6", + "jest": "^26.6.3", + "ts-jest": "^26.5.0", + "typescript": "^4.1.3" + } +} diff --git a/synths/tsconfig.json b/synths/tsconfig.json new file mode 100644 index 0000000..4289e5a --- /dev/null +++ b/synths/tsconfig.json @@ -0,0 +1,33 @@ +{ + "compilerOptions": { + "alwaysStrict": true, + "charset": "utf8", + "declaration": true, + "experimentalDecorators": true, + "inlineSourceMap": true, + "inlineSources": true, + "lib": [ + "es2016" + ], + "module": "CommonJS", + "noEmitOnError": true, + "noFallthroughCasesInSwitch": true, + "noImplicitAny": true, + "noImplicitReturns": true, + "noImplicitThis": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "resolveJsonModule": true, + "strict": true, + "strictNullChecks": true, + "strictPropertyInitialization": true, + "stripInternal": true, + "target": "ES2017" + }, + "include": [ + "**/*.ts" + ], + "exclude": [ + "node_modules" + ] +} From 286017d0b2bc5412b677c0c7633fc4b5523a33b7 Mon Sep 17 00:00:00 2001 From: Kingdon Barrett Date: Mon, 1 Feb 2021 09:04:25 -0500 Subject: [PATCH 3/5] use npm install -g instead of yarn global add --- .stignore | 2 +- Gemfile.lock | 3 ++- Jenkinsfile | 17 +++++++++++++++- jenkins/docker-pod.yaml | 7 +++++++ jenkins/rake-ci.sh | 34 +++++++++++++++++++++++++++---- jenkins/runasroot-dependencies.sh | 3 ++- okteto.yml | 2 -- 7 files changed, 58 insertions(+), 10 deletions(-) diff --git a/.stignore b/.stignore index b496f60..5db8bd6 100644 --- a/.stignore +++ b/.stignore @@ -9,7 +9,7 @@ Dockerfile Jenkinsfile Procfile charts/ -jenkins/ +# jenkins/ log/ node_modules/ public/assets diff --git a/Gemfile.lock b/Gemfile.lock index 2703429..e0ae825 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -6,6 +6,7 @@ GEM PLATFORMS x86_64-darwin-19 + x86_64-linux DEPENDENCIES rake (~> 13.0) @@ -15,4 +16,4 @@ RUBY VERSION ruby 3.0.0p0 BUNDLED WITH - 2.2.3 + 2.2.7 diff --git a/Jenkinsfile b/Jenkinsfile index 5c255ae..54d3621 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -73,12 +73,27 @@ pipeline { apiVersion: v1 kind: Pod spec: + volumes: + - name: ssh-deploy-key + secret: + secretName: flux-synths-writer-ssh + nodeSelector: + jenkins.teamhephy.info/dockerbuilder: ruby + tolerations: + - key: jenkins.teamhephy.info/dockerbuilder + operator: Equal + value: ruby + effect: NoSchedule containers: - name: test image: ${dockerRepoHost}/${dockerRepoUser}/${dockerRepoProj}:jenkins_${gitCommit} imagePullPolicy: Never securityContext: runAsUser: 1000 + volumeMounts: + - name: ssh-deploy-key + readOnly: true + mountPath: "/home/jenkins/.ssh" command: - cat resources: @@ -98,7 +113,7 @@ pipeline { // to run with user 1000, NB. this is a hard requirement of Jenkins, // (this is not a requirement of docker or rvm-docker-support) container('test') { - sh (script: "cd /home/rvm/app && ./jenkins/rake-ci.sh") + sh (script: "cd /home/rvm/app && GIT_COMMIT=${gitCommit} ssh-agent ./jenkins/rake-ci.sh") } } } diff --git a/jenkins/docker-pod.yaml b/jenkins/docker-pod.yaml index f60462c..00942ef 100644 --- a/jenkins/docker-pod.yaml +++ b/jenkins/docker-pod.yaml @@ -21,3 +21,10 @@ spec: memory: 2Gi cpu: 1 tty: true + nodeSelector: + jenkins.teamhephy.info/dockerbuilder: ruby + tolerations: + - key: jenkins.teamhephy.info/dockerbuilder + operator: Equal + value: ruby + effect: NoSchedule diff --git a/jenkins/rake-ci.sh b/jenkins/rake-ci.sh index 6c6b5ee..bc57647 100755 --- a/jenkins/rake-ci.sh +++ b/jenkins/rake-ci.sh @@ -1,7 +1,33 @@ #!/bin/bash -source /etc/profile.d/rvm.sh -rvm ${RUBY}@testing +# source /etc/profile.d/rvm.sh +# rvm ${RUBY}@testing +# +# bundle check +# bundle exec rake ci -bundle check -bundle exec rake ci +# run cdk8s to hydrate yamls in dist/ +pushd synths +npm install +cdk8s synth + +# verbose +set -x + +ssh-add ~/.ssh/id_ed25519_flux +git clone git@github.com:kingdonb/example-cdk8s-ruby.git -b synths git-dist +cd git-dist + +# prune (dist is only generating one file anyway) +mv -f ../dist/synths.k8s.yaml ./ + +# sleep 6000 +# generate a new commit on synths branch and push +git add synths.k8s.yaml +git config --global user.email "kingdon-ci@nerdland.info" +git config --global user.name "kingdon-ci Robot (Jenkins)" +git commit -m"built synth.k8s from $GIT_COMMIT" synths.k8s.yaml +git push origin synths + +# all done +popd diff --git a/jenkins/runasroot-dependencies.sh b/jenkins/runasroot-dependencies.sh index 14752fa..98ce4e6 100755 --- a/jenkins/runasroot-dependencies.sh +++ b/jenkins/runasroot-dependencies.sh @@ -16,7 +16,8 @@ apt-get upgrade -y --no-install-recommends # curl -sL https://deb.nodesource.com/setup_14.x | bash - # curl -o- -L https://yarnpkg.com/install.sh | bash -yarn global add cdk8s-cli +npm install -g cdk8s-cli +# yarn global add cdk8s-cli # Clean up apt-get clean diff --git a/okteto.yml b/okteto.yml index b5bf4b9..7d59353 100644 --- a/okteto.yml +++ b/okteto.yml @@ -11,5 +11,3 @@ securityContext: runAsUser: 999 runAsGroup: 1000 fsGroup: 1000 -annotations: - fluxcd.io/ignore: "true" From 783511d5ec2b3049af73333823470f766d7d82db Mon Sep 17 00:00:00 2001 From: Kingdon Barrett Date: Mon, 1 Feb 2021 14:20:55 -0500 Subject: [PATCH 4/5] rebase spike-development-3 $GIT_REPO - variable for development purposes it will be handy to be able to swap out this git repository easily from here in the script, so let's make it a variable parameter in the script. Was on the fence about running: cdk8s import k8s inside of CI, opted to run it upstream intead. npm run compile will succeed as long as k8s.ts is included tests are used to ensure smoke-test readiness but are not comprehensive * add package-lock.json - there is an error from CI about npm version * Generally do not commit synths/*.js (except for synths/jest.config.js, which is full of test configuration) * do not include compilation targets Generated by npm run compile and they should not be committed in CI * do not save __snapshots__/*.test.ts.snap I am not sure how snapshots work but they are recommended as a test strategy in the distro files from cdk8s. I do not know how jest works outside of basic things, will use it to write some tests maybe, or skip it. (It would be better to test this with something comprehensive before it is applied to the cluster, but maybe kustomization's health checking is good enough to avoid a complex suite of tests upstream...) https://openconstructfoundation.org/testing-cdk8s/ So we can see a problem in our generated output thanks to test failures, the namespace has not been mentioned in the re-hydrated yaml from cdk8s. Let's add a test that asserts we include the namespace, and include it. * run the tests in CI this should stop synths commit from being generated in event that it failed the test (this is imperfect, but it's a useful mitigation) * do not use snapshots for now --- .dockerignore | 1 - .gitignore | 8 +- .stignore | 1 - jenkins/rake-ci.sh | 20 +- synths/__snapshots__/main.test.ts.snap | 3 - synths/imports/k8s.ts | 19492 +++++++++++++++++++++++ synths/main.d.ts | 5 - synths/main.js | 15 - synths/main.test.d.ts | 1 - synths/main.test.js | 13 - synths/main.test.ts | 25 +- synths/main.ts | 34 +- synths/package-lock.json | 7163 ++++++++- 13 files changed, 26727 insertions(+), 54 deletions(-) delete mode 100644 synths/__snapshots__/main.test.ts.snap create mode 100644 synths/imports/k8s.ts delete mode 100644 synths/main.d.ts delete mode 100644 synths/main.js delete mode 100644 synths/main.test.d.ts delete mode 100644 synths/main.test.js diff --git a/.dockerignore b/.dockerignore index 554bed6..be90c88 100644 --- a/.dockerignore +++ b/.dockerignore @@ -20,6 +20,5 @@ myapp-dev-ing.yaml myapp-secret-dev.yaml myapp-test-ing.yaml myapp-secret-staging.yaml -synths/imports synths/dist synths/node_modules diff --git a/.gitignore b/.gitignore index ef8dba4..4c89a71 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,12 @@ myapp-secret-dev.yaml myapp-test-ing.yaml myapp-secret-test.yaml -synths/imports +# synths/imports +synths/imports/*.js +synths/imports/*.d.ts synths/dist synths/node_modules +!synths/jest.config.js +synths/*.js +synths/*.d.ts +synths/__snapshots__/*.test.ts.snap diff --git a/.stignore b/.stignore index 5db8bd6..d213590 100644 --- a/.stignore +++ b/.stignore @@ -20,6 +20,5 @@ myapp-dev-ing.yaml myapp-secret-dev.yaml myapp-test-ing.yaml myapp-secret-staging.yaml -synths/imports synths/dist synths/node_modules diff --git a/jenkins/rake-ci.sh b/jenkins/rake-ci.sh index bc57647..cc444df 100755 --- a/jenkins/rake-ci.sh +++ b/jenkins/rake-ci.sh @@ -1,28 +1,34 @@ #!/bin/bash -# source /etc/profile.d/rvm.sh -# rvm ${RUBY}@testing -# -# bundle check -# bundle exec rake ci +GIT_REPO=git@github.com:kingdonb/example-cdk8s-ruby.git +# GIT_REPO=https://github.com/kingdon-ci/example-cdk8s-ruby # run cdk8s to hydrate yamls in dist/ pushd synths npm install + +# run compile and test (fail the script and exit if test fails) +set -ex +npm run compile +npm run test +set +ex + +# execute "synth" and make our synthetized yamls cdk8s synth # verbose set -x +# add the SSH key mounted from secret, and clone git branch 'synths' ssh-add ~/.ssh/id_ed25519_flux -git clone git@github.com:kingdonb/example-cdk8s-ruby.git -b synths git-dist +git clone $GIT_REPO -b synths git-dist cd git-dist # prune (dist is only generating one file anyway) mv -f ../dist/synths.k8s.yaml ./ -# sleep 6000 # generate a new commit on synths branch and push +# FIXME: branches other than (whatever) should not result in a commit git add synths.k8s.yaml git config --global user.email "kingdon-ci@nerdland.info" git config --global user.name "kingdon-ci Robot (Jenkins)" diff --git a/synths/__snapshots__/main.test.ts.snap b/synths/__snapshots__/main.test.ts.snap deleted file mode 100644 index df41477..0000000 --- a/synths/__snapshots__/main.test.ts.snap +++ /dev/null @@ -1,3 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`Placeholder Empty 1`] = `Array []`; diff --git a/synths/imports/k8s.ts b/synths/imports/k8s.ts new file mode 100644 index 0000000..0fb688d --- /dev/null +++ b/synths/imports/k8s.ts @@ -0,0 +1,19492 @@ +// generated by cdk8s +import { ApiObject, GroupVersionKind } from 'cdk8s'; +import { Construct } from 'constructs'; + +/** + * MutatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and may change the object. + * + * @schema io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration + */ +export class KubeMutatingWebhookConfigurationV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'admissionregistration.k8s.io/v1beta1', + kind: 'MutatingWebhookConfiguration', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeMutatingWebhookConfigurationV1Beta1Props = {}): any { + return { + ...KubeMutatingWebhookConfigurationV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeMutatingWebhookConfigurationV1Beta1Props = {}) { + super(scope, id, KubeMutatingWebhookConfigurationV1Beta1.manifest(props)); + } +} + +/** + * MutatingWebhookConfigurationList is a list of MutatingWebhookConfiguration. + * + * @schema io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfigurationList + */ +export class KubeMutatingWebhookConfigurationListV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfigurationList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'admissionregistration.k8s.io/v1beta1', + kind: 'MutatingWebhookConfigurationList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfigurationList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeMutatingWebhookConfigurationListV1Beta1Props): any { + return { + ...KubeMutatingWebhookConfigurationListV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfigurationList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeMutatingWebhookConfigurationListV1Beta1Props) { + super(scope, id, KubeMutatingWebhookConfigurationListV1Beta1.manifest(props)); + } +} + +/** + * ValidatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and object without changing it. + * + * @schema io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration + */ +export class KubeValidatingWebhookConfigurationV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'admissionregistration.k8s.io/v1beta1', + kind: 'ValidatingWebhookConfiguration', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeValidatingWebhookConfigurationV1Beta1Props = {}): any { + return { + ...KubeValidatingWebhookConfigurationV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeValidatingWebhookConfigurationV1Beta1Props = {}) { + super(scope, id, KubeValidatingWebhookConfigurationV1Beta1.manifest(props)); + } +} + +/** + * ValidatingWebhookConfigurationList is a list of ValidatingWebhookConfiguration. + * + * @schema io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfigurationList + */ +export class KubeValidatingWebhookConfigurationListV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfigurationList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'admissionregistration.k8s.io/v1beta1', + kind: 'ValidatingWebhookConfigurationList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfigurationList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeValidatingWebhookConfigurationListV1Beta1Props): any { + return { + ...KubeValidatingWebhookConfigurationListV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfigurationList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeValidatingWebhookConfigurationListV1Beta1Props) { + super(scope, id, KubeValidatingWebhookConfigurationListV1Beta1.manifest(props)); + } +} + +/** + * ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers. + * + * @schema io.k8s.api.apps.v1.ControllerRevision + */ +export class KubeControllerRevision extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.apps.v1.ControllerRevision" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'apps/v1', + kind: 'ControllerRevision', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.apps.v1.ControllerRevision". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeControllerRevisionProps): any { + return { + ...KubeControllerRevision.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.apps.v1.ControllerRevision" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeControllerRevisionProps) { + super(scope, id, KubeControllerRevision.manifest(props)); + } +} + +/** + * ControllerRevisionList is a resource containing a list of ControllerRevision objects. + * + * @schema io.k8s.api.apps.v1.ControllerRevisionList + */ +export class KubeControllerRevisionList extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.apps.v1.ControllerRevisionList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'apps/v1', + kind: 'ControllerRevisionList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.apps.v1.ControllerRevisionList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeControllerRevisionListProps): any { + return { + ...KubeControllerRevisionList.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.apps.v1.ControllerRevisionList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeControllerRevisionListProps) { + super(scope, id, KubeControllerRevisionList.manifest(props)); + } +} + +/** + * DaemonSet represents the configuration of a daemon set. + * + * @schema io.k8s.api.apps.v1.DaemonSet + */ +export class KubeDaemonSet extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.apps.v1.DaemonSet" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'apps/v1', + kind: 'DaemonSet', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.apps.v1.DaemonSet". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeDaemonSetProps = {}): any { + return { + ...KubeDaemonSet.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.apps.v1.DaemonSet" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeDaemonSetProps = {}) { + super(scope, id, KubeDaemonSet.manifest(props)); + } +} + +/** + * DaemonSetList is a collection of daemon sets. + * + * @schema io.k8s.api.apps.v1.DaemonSetList + */ +export class KubeDaemonSetList extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.apps.v1.DaemonSetList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'apps/v1', + kind: 'DaemonSetList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.apps.v1.DaemonSetList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeDaemonSetListProps): any { + return { + ...KubeDaemonSetList.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.apps.v1.DaemonSetList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeDaemonSetListProps) { + super(scope, id, KubeDaemonSetList.manifest(props)); + } +} + +/** + * Deployment enables declarative updates for Pods and ReplicaSets. + * + * @schema io.k8s.api.apps.v1.Deployment + */ +export class KubeDeployment extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.apps.v1.Deployment" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'apps/v1', + kind: 'Deployment', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.apps.v1.Deployment". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeDeploymentProps = {}): any { + return { + ...KubeDeployment.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.apps.v1.Deployment" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeDeploymentProps = {}) { + super(scope, id, KubeDeployment.manifest(props)); + } +} + +/** + * DeploymentList is a list of Deployments. + * + * @schema io.k8s.api.apps.v1.DeploymentList + */ +export class KubeDeploymentList extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.apps.v1.DeploymentList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'apps/v1', + kind: 'DeploymentList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.apps.v1.DeploymentList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeDeploymentListProps): any { + return { + ...KubeDeploymentList.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.apps.v1.DeploymentList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeDeploymentListProps) { + super(scope, id, KubeDeploymentList.manifest(props)); + } +} + +/** + * ReplicaSet ensures that a specified number of pod replicas are running at any given time. + * + * @schema io.k8s.api.apps.v1.ReplicaSet + */ +export class KubeReplicaSet extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.apps.v1.ReplicaSet" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'apps/v1', + kind: 'ReplicaSet', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.apps.v1.ReplicaSet". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeReplicaSetProps = {}): any { + return { + ...KubeReplicaSet.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.apps.v1.ReplicaSet" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeReplicaSetProps = {}) { + super(scope, id, KubeReplicaSet.manifest(props)); + } +} + +/** + * ReplicaSetList is a collection of ReplicaSets. + * + * @schema io.k8s.api.apps.v1.ReplicaSetList + */ +export class KubeReplicaSetList extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.apps.v1.ReplicaSetList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'apps/v1', + kind: 'ReplicaSetList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.apps.v1.ReplicaSetList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeReplicaSetListProps): any { + return { + ...KubeReplicaSetList.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.apps.v1.ReplicaSetList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeReplicaSetListProps) { + super(scope, id, KubeReplicaSetList.manifest(props)); + } +} + +/** + * StatefulSet represents a set of pods with consistent identities. Identities are defined as: + - Network: A single stable DNS and hostname. + - Storage: As many VolumeClaims as requested. +The StatefulSet guarantees that a given network identity will always map to the same storage identity. + * + * @schema io.k8s.api.apps.v1.StatefulSet + */ +export class KubeStatefulSet extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.apps.v1.StatefulSet" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'apps/v1', + kind: 'StatefulSet', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.apps.v1.StatefulSet". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeStatefulSetProps = {}): any { + return { + ...KubeStatefulSet.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.apps.v1.StatefulSet" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeStatefulSetProps = {}) { + super(scope, id, KubeStatefulSet.manifest(props)); + } +} + +/** + * StatefulSetList is a collection of StatefulSets. + * + * @schema io.k8s.api.apps.v1.StatefulSetList + */ +export class KubeStatefulSetList extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.apps.v1.StatefulSetList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'apps/v1', + kind: 'StatefulSetList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.apps.v1.StatefulSetList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeStatefulSetListProps): any { + return { + ...KubeStatefulSetList.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.apps.v1.StatefulSetList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeStatefulSetListProps) { + super(scope, id, KubeStatefulSetList.manifest(props)); + } +} + +/** + * DEPRECATED - This group version of ControllerRevision is deprecated by apps/v1beta2/ControllerRevision. See the release notes for more information. ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers. + * + * @schema io.k8s.api.apps.v1beta1.ControllerRevision + */ +export class KubeControllerRevisionV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.apps.v1beta1.ControllerRevision" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'apps/v1beta1', + kind: 'ControllerRevision', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.apps.v1beta1.ControllerRevision". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeControllerRevisionV1Beta1Props): any { + return { + ...KubeControllerRevisionV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.apps.v1beta1.ControllerRevision" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeControllerRevisionV1Beta1Props) { + super(scope, id, KubeControllerRevisionV1Beta1.manifest(props)); + } +} + +/** + * ControllerRevisionList is a resource containing a list of ControllerRevision objects. + * + * @schema io.k8s.api.apps.v1beta1.ControllerRevisionList + */ +export class KubeControllerRevisionListV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.apps.v1beta1.ControllerRevisionList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'apps/v1beta1', + kind: 'ControllerRevisionList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.apps.v1beta1.ControllerRevisionList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeControllerRevisionListV1Beta1Props): any { + return { + ...KubeControllerRevisionListV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.apps.v1beta1.ControllerRevisionList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeControllerRevisionListV1Beta1Props) { + super(scope, id, KubeControllerRevisionListV1Beta1.manifest(props)); + } +} + +/** + * DEPRECATED - This group version of Deployment is deprecated by apps/v1beta2/Deployment. See the release notes for more information. Deployment enables declarative updates for Pods and ReplicaSets. + * + * @schema io.k8s.api.extensions.v1beta1.Deployment + */ +export class KubeDeploymentV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.extensions.v1beta1.Deployment" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'extensions/v1beta1', + kind: 'Deployment', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.extensions.v1beta1.Deployment". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeDeploymentV1Beta1Props = {}): any { + return { + ...KubeDeploymentV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.extensions.v1beta1.Deployment" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeDeploymentV1Beta1Props = {}) { + super(scope, id, KubeDeploymentV1Beta1.manifest(props)); + } +} + +/** + * DeploymentList is a list of Deployments. + * + * @schema io.k8s.api.extensions.v1beta1.DeploymentList + */ +export class KubeDeploymentListV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.extensions.v1beta1.DeploymentList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'extensions/v1beta1', + kind: 'DeploymentList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.extensions.v1beta1.DeploymentList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeDeploymentListV1Beta1Props): any { + return { + ...KubeDeploymentListV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.extensions.v1beta1.DeploymentList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeDeploymentListV1Beta1Props) { + super(scope, id, KubeDeploymentListV1Beta1.manifest(props)); + } +} + +/** + * represents a scaling request for a resource. + * + * @schema io.k8s.api.extensions.v1beta1.Scale + */ +export class KubeScaleV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.extensions.v1beta1.Scale" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'extensions/v1beta1', + kind: 'Scale', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.extensions.v1beta1.Scale". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeScaleV1Beta1Props = {}): any { + return { + ...KubeScaleV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.extensions.v1beta1.Scale" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeScaleV1Beta1Props = {}) { + super(scope, id, KubeScaleV1Beta1.manifest(props)); + } +} + +/** + * DEPRECATED - This group version of StatefulSet is deprecated by apps/v1beta2/StatefulSet. See the release notes for more information. StatefulSet represents a set of pods with consistent identities. Identities are defined as: + - Network: A single stable DNS and hostname. + - Storage: As many VolumeClaims as requested. +The StatefulSet guarantees that a given network identity will always map to the same storage identity. + * + * @schema io.k8s.api.apps.v1beta1.StatefulSet + */ +export class KubeStatefulSetV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.apps.v1beta1.StatefulSet" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'apps/v1beta1', + kind: 'StatefulSet', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.apps.v1beta1.StatefulSet". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeStatefulSetV1Beta1Props = {}): any { + return { + ...KubeStatefulSetV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.apps.v1beta1.StatefulSet" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeStatefulSetV1Beta1Props = {}) { + super(scope, id, KubeStatefulSetV1Beta1.manifest(props)); + } +} + +/** + * StatefulSetList is a collection of StatefulSets. + * + * @schema io.k8s.api.apps.v1beta1.StatefulSetList + */ +export class KubeStatefulSetListV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.apps.v1beta1.StatefulSetList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'apps/v1beta1', + kind: 'StatefulSetList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.apps.v1beta1.StatefulSetList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeStatefulSetListV1Beta1Props): any { + return { + ...KubeStatefulSetListV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.apps.v1beta1.StatefulSetList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeStatefulSetListV1Beta1Props) { + super(scope, id, KubeStatefulSetListV1Beta1.manifest(props)); + } +} + +/** + * DEPRECATED - This group version of ControllerRevision is deprecated by apps/v1/ControllerRevision. See the release notes for more information. ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers. + * + * @schema io.k8s.api.apps.v1beta2.ControllerRevision + */ +export class KubeControllerRevisionV1Beta2 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.apps.v1beta2.ControllerRevision" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'apps/v1beta2', + kind: 'ControllerRevision', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.apps.v1beta2.ControllerRevision". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeControllerRevisionV1Beta2Props): any { + return { + ...KubeControllerRevisionV1Beta2.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.apps.v1beta2.ControllerRevision" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeControllerRevisionV1Beta2Props) { + super(scope, id, KubeControllerRevisionV1Beta2.manifest(props)); + } +} + +/** + * ControllerRevisionList is a resource containing a list of ControllerRevision objects. + * + * @schema io.k8s.api.apps.v1beta2.ControllerRevisionList + */ +export class KubeControllerRevisionListV1Beta2 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.apps.v1beta2.ControllerRevisionList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'apps/v1beta2', + kind: 'ControllerRevisionList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.apps.v1beta2.ControllerRevisionList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeControllerRevisionListV1Beta2Props): any { + return { + ...KubeControllerRevisionListV1Beta2.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.apps.v1beta2.ControllerRevisionList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeControllerRevisionListV1Beta2Props) { + super(scope, id, KubeControllerRevisionListV1Beta2.manifest(props)); + } +} + +/** + * DEPRECATED - This group version of DaemonSet is deprecated by apps/v1/DaemonSet. See the release notes for more information. DaemonSet represents the configuration of a daemon set. + * + * @schema io.k8s.api.apps.v1beta2.DaemonSet + */ +export class KubeDaemonSetV1Beta2 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.apps.v1beta2.DaemonSet" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'apps/v1beta2', + kind: 'DaemonSet', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.apps.v1beta2.DaemonSet". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeDaemonSetV1Beta2Props = {}): any { + return { + ...KubeDaemonSetV1Beta2.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.apps.v1beta2.DaemonSet" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeDaemonSetV1Beta2Props = {}) { + super(scope, id, KubeDaemonSetV1Beta2.manifest(props)); + } +} + +/** + * DaemonSetList is a collection of daemon sets. + * + * @schema io.k8s.api.apps.v1beta2.DaemonSetList + */ +export class KubeDaemonSetListV1Beta2 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.apps.v1beta2.DaemonSetList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'apps/v1beta2', + kind: 'DaemonSetList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.apps.v1beta2.DaemonSetList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeDaemonSetListV1Beta2Props): any { + return { + ...KubeDaemonSetListV1Beta2.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.apps.v1beta2.DaemonSetList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeDaemonSetListV1Beta2Props) { + super(scope, id, KubeDaemonSetListV1Beta2.manifest(props)); + } +} + +/** + * DEPRECATED - This group version of Deployment is deprecated by apps/v1/Deployment. See the release notes for more information. Deployment enables declarative updates for Pods and ReplicaSets. + * + * @schema io.k8s.api.apps.v1beta2.Deployment + */ +export class KubeDeploymentV1Beta2 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.apps.v1beta2.Deployment" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'apps/v1beta2', + kind: 'Deployment', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.apps.v1beta2.Deployment". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeDeploymentV1Beta2Props = {}): any { + return { + ...KubeDeploymentV1Beta2.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.apps.v1beta2.Deployment" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeDeploymentV1Beta2Props = {}) { + super(scope, id, KubeDeploymentV1Beta2.manifest(props)); + } +} + +/** + * DeploymentList is a list of Deployments. + * + * @schema io.k8s.api.apps.v1beta2.DeploymentList + */ +export class KubeDeploymentListV1Beta2 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.apps.v1beta2.DeploymentList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'apps/v1beta2', + kind: 'DeploymentList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.apps.v1beta2.DeploymentList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeDeploymentListV1Beta2Props): any { + return { + ...KubeDeploymentListV1Beta2.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.apps.v1beta2.DeploymentList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeDeploymentListV1Beta2Props) { + super(scope, id, KubeDeploymentListV1Beta2.manifest(props)); + } +} + +/** + * DEPRECATED - This group version of ReplicaSet is deprecated by apps/v1/ReplicaSet. See the release notes for more information. ReplicaSet ensures that a specified number of pod replicas are running at any given time. + * + * @schema io.k8s.api.apps.v1beta2.ReplicaSet + */ +export class KubeReplicaSetV1Beta2 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.apps.v1beta2.ReplicaSet" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'apps/v1beta2', + kind: 'ReplicaSet', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.apps.v1beta2.ReplicaSet". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeReplicaSetV1Beta2Props = {}): any { + return { + ...KubeReplicaSetV1Beta2.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.apps.v1beta2.ReplicaSet" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeReplicaSetV1Beta2Props = {}) { + super(scope, id, KubeReplicaSetV1Beta2.manifest(props)); + } +} + +/** + * ReplicaSetList is a collection of ReplicaSets. + * + * @schema io.k8s.api.apps.v1beta2.ReplicaSetList + */ +export class KubeReplicaSetListV1Beta2 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.apps.v1beta2.ReplicaSetList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'apps/v1beta2', + kind: 'ReplicaSetList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.apps.v1beta2.ReplicaSetList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeReplicaSetListV1Beta2Props): any { + return { + ...KubeReplicaSetListV1Beta2.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.apps.v1beta2.ReplicaSetList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeReplicaSetListV1Beta2Props) { + super(scope, id, KubeReplicaSetListV1Beta2.manifest(props)); + } +} + +/** + * Scale represents a scaling request for a resource. + * + * @schema io.k8s.api.apps.v1beta2.Scale + */ +export class KubeScaleV1Beta2 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.apps.v1beta2.Scale" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'apps/v1beta2', + kind: 'Scale', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.apps.v1beta2.Scale". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeScaleV1Beta2Props = {}): any { + return { + ...KubeScaleV1Beta2.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.apps.v1beta2.Scale" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeScaleV1Beta2Props = {}) { + super(scope, id, KubeScaleV1Beta2.manifest(props)); + } +} + +/** + * DEPRECATED - This group version of StatefulSet is deprecated by apps/v1/StatefulSet. See the release notes for more information. StatefulSet represents a set of pods with consistent identities. Identities are defined as: + - Network: A single stable DNS and hostname. + - Storage: As many VolumeClaims as requested. +The StatefulSet guarantees that a given network identity will always map to the same storage identity. + * + * @schema io.k8s.api.apps.v1beta2.StatefulSet + */ +export class KubeStatefulSetV1Beta2 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.apps.v1beta2.StatefulSet" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'apps/v1beta2', + kind: 'StatefulSet', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.apps.v1beta2.StatefulSet". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeStatefulSetV1Beta2Props = {}): any { + return { + ...KubeStatefulSetV1Beta2.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.apps.v1beta2.StatefulSet" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeStatefulSetV1Beta2Props = {}) { + super(scope, id, KubeStatefulSetV1Beta2.manifest(props)); + } +} + +/** + * StatefulSetList is a collection of StatefulSets. + * + * @schema io.k8s.api.apps.v1beta2.StatefulSetList + */ +export class KubeStatefulSetListV1Beta2 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.apps.v1beta2.StatefulSetList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'apps/v1beta2', + kind: 'StatefulSetList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.apps.v1beta2.StatefulSetList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeStatefulSetListV1Beta2Props): any { + return { + ...KubeStatefulSetListV1Beta2.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.apps.v1beta2.StatefulSetList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeStatefulSetListV1Beta2Props) { + super(scope, id, KubeStatefulSetListV1Beta2.manifest(props)); + } +} + +/** + * AuditSink represents a cluster level audit sink + * + * @schema io.k8s.api.auditregistration.v1alpha1.AuditSink + */ +export class KubeAuditSinkV1Alpha1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.auditregistration.v1alpha1.AuditSink" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'auditregistration.k8s.io/v1alpha1', + kind: 'AuditSink', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.auditregistration.v1alpha1.AuditSink". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeAuditSinkV1Alpha1Props = {}): any { + return { + ...KubeAuditSinkV1Alpha1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.auditregistration.v1alpha1.AuditSink" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeAuditSinkV1Alpha1Props = {}) { + super(scope, id, KubeAuditSinkV1Alpha1.manifest(props)); + } +} + +/** + * AuditSinkList is a list of AuditSink items. + * + * @schema io.k8s.api.auditregistration.v1alpha1.AuditSinkList + */ +export class KubeAuditSinkListV1Alpha1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.auditregistration.v1alpha1.AuditSinkList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'auditregistration.k8s.io/v1alpha1', + kind: 'AuditSinkList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.auditregistration.v1alpha1.AuditSinkList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeAuditSinkListV1Alpha1Props): any { + return { + ...KubeAuditSinkListV1Alpha1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.auditregistration.v1alpha1.AuditSinkList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeAuditSinkListV1Alpha1Props) { + super(scope, id, KubeAuditSinkListV1Alpha1.manifest(props)); + } +} + +/** + * TokenReview attempts to authenticate a token to a known user. Note: TokenReview requests may be cached by the webhook token authenticator plugin in the kube-apiserver. + * + * @schema io.k8s.api.authentication.v1.TokenReview + */ +export class KubeTokenReview extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.authentication.v1.TokenReview" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'authentication.k8s.io/v1', + kind: 'TokenReview', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.authentication.v1.TokenReview". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeTokenReviewProps): any { + return { + ...KubeTokenReview.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.authentication.v1.TokenReview" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeTokenReviewProps) { + super(scope, id, KubeTokenReview.manifest(props)); + } +} + +/** + * TokenReview attempts to authenticate a token to a known user. Note: TokenReview requests may be cached by the webhook token authenticator plugin in the kube-apiserver. + * + * @schema io.k8s.api.authentication.v1beta1.TokenReview + */ +export class KubeTokenReviewV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.authentication.v1beta1.TokenReview" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'authentication.k8s.io/v1beta1', + kind: 'TokenReview', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.authentication.v1beta1.TokenReview". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeTokenReviewV1Beta1Props): any { + return { + ...KubeTokenReviewV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.authentication.v1beta1.TokenReview" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeTokenReviewV1Beta1Props) { + super(scope, id, KubeTokenReviewV1Beta1.manifest(props)); + } +} + +/** + * LocalSubjectAccessReview checks whether or not a user or group can perform an action in a given namespace. Having a namespace scoped resource makes it much easier to grant namespace scoped policy that includes permissions checking. + * + * @schema io.k8s.api.authorization.v1.LocalSubjectAccessReview + */ +export class KubeLocalSubjectAccessReview extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.authorization.v1.LocalSubjectAccessReview" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'authorization.k8s.io/v1', + kind: 'LocalSubjectAccessReview', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.authorization.v1.LocalSubjectAccessReview". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeLocalSubjectAccessReviewProps): any { + return { + ...KubeLocalSubjectAccessReview.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.authorization.v1.LocalSubjectAccessReview" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeLocalSubjectAccessReviewProps) { + super(scope, id, KubeLocalSubjectAccessReview.manifest(props)); + } +} + +/** + * SelfSubjectAccessReview checks whether or the current user can perform an action. Not filling in a spec.namespace means "in all namespaces". Self is a special case, because users should always be able to check whether they can perform an action + * + * @schema io.k8s.api.authorization.v1.SelfSubjectAccessReview + */ +export class KubeSelfSubjectAccessReview extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.authorization.v1.SelfSubjectAccessReview" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'authorization.k8s.io/v1', + kind: 'SelfSubjectAccessReview', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.authorization.v1.SelfSubjectAccessReview". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeSelfSubjectAccessReviewProps): any { + return { + ...KubeSelfSubjectAccessReview.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.authorization.v1.SelfSubjectAccessReview" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeSelfSubjectAccessReviewProps) { + super(scope, id, KubeSelfSubjectAccessReview.manifest(props)); + } +} + +/** + * SelfSubjectRulesReview enumerates the set of actions the current user can perform within a namespace. The returned list of actions may be incomplete depending on the server's authorization mode, and any errors experienced during the evaluation. SelfSubjectRulesReview should be used by UIs to show/hide actions, or to quickly let an end user reason about their permissions. It should NOT Be used by external systems to drive authorization decisions as this raises confused deputy, cache lifetime/revocation, and correctness concerns. SubjectAccessReview, and LocalAccessReview are the correct way to defer authorization decisions to the API server. + * + * @schema io.k8s.api.authorization.v1.SelfSubjectRulesReview + */ +export class KubeSelfSubjectRulesReview extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.authorization.v1.SelfSubjectRulesReview" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'authorization.k8s.io/v1', + kind: 'SelfSubjectRulesReview', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.authorization.v1.SelfSubjectRulesReview". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeSelfSubjectRulesReviewProps): any { + return { + ...KubeSelfSubjectRulesReview.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.authorization.v1.SelfSubjectRulesReview" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeSelfSubjectRulesReviewProps) { + super(scope, id, KubeSelfSubjectRulesReview.manifest(props)); + } +} + +/** + * SubjectAccessReview checks whether or not a user or group can perform an action. + * + * @schema io.k8s.api.authorization.v1.SubjectAccessReview + */ +export class KubeSubjectAccessReview extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.authorization.v1.SubjectAccessReview" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'authorization.k8s.io/v1', + kind: 'SubjectAccessReview', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.authorization.v1.SubjectAccessReview". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeSubjectAccessReviewProps): any { + return { + ...KubeSubjectAccessReview.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.authorization.v1.SubjectAccessReview" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeSubjectAccessReviewProps) { + super(scope, id, KubeSubjectAccessReview.manifest(props)); + } +} + +/** + * LocalSubjectAccessReview checks whether or not a user or group can perform an action in a given namespace. Having a namespace scoped resource makes it much easier to grant namespace scoped policy that includes permissions checking. + * + * @schema io.k8s.api.authorization.v1beta1.LocalSubjectAccessReview + */ +export class KubeLocalSubjectAccessReviewV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.authorization.v1beta1.LocalSubjectAccessReview" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'authorization.k8s.io/v1beta1', + kind: 'LocalSubjectAccessReview', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.authorization.v1beta1.LocalSubjectAccessReview". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeLocalSubjectAccessReviewV1Beta1Props): any { + return { + ...KubeLocalSubjectAccessReviewV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.authorization.v1beta1.LocalSubjectAccessReview" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeLocalSubjectAccessReviewV1Beta1Props) { + super(scope, id, KubeLocalSubjectAccessReviewV1Beta1.manifest(props)); + } +} + +/** + * SelfSubjectAccessReview checks whether or the current user can perform an action. Not filling in a spec.namespace means "in all namespaces". Self is a special case, because users should always be able to check whether they can perform an action + * + * @schema io.k8s.api.authorization.v1beta1.SelfSubjectAccessReview + */ +export class KubeSelfSubjectAccessReviewV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.authorization.v1beta1.SelfSubjectAccessReview" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'authorization.k8s.io/v1beta1', + kind: 'SelfSubjectAccessReview', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.authorization.v1beta1.SelfSubjectAccessReview". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeSelfSubjectAccessReviewV1Beta1Props): any { + return { + ...KubeSelfSubjectAccessReviewV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.authorization.v1beta1.SelfSubjectAccessReview" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeSelfSubjectAccessReviewV1Beta1Props) { + super(scope, id, KubeSelfSubjectAccessReviewV1Beta1.manifest(props)); + } +} + +/** + * SelfSubjectRulesReview enumerates the set of actions the current user can perform within a namespace. The returned list of actions may be incomplete depending on the server's authorization mode, and any errors experienced during the evaluation. SelfSubjectRulesReview should be used by UIs to show/hide actions, or to quickly let an end user reason about their permissions. It should NOT Be used by external systems to drive authorization decisions as this raises confused deputy, cache lifetime/revocation, and correctness concerns. SubjectAccessReview, and LocalAccessReview are the correct way to defer authorization decisions to the API server. + * + * @schema io.k8s.api.authorization.v1beta1.SelfSubjectRulesReview + */ +export class KubeSelfSubjectRulesReviewV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.authorization.v1beta1.SelfSubjectRulesReview" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'authorization.k8s.io/v1beta1', + kind: 'SelfSubjectRulesReview', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.authorization.v1beta1.SelfSubjectRulesReview". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeSelfSubjectRulesReviewV1Beta1Props): any { + return { + ...KubeSelfSubjectRulesReviewV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.authorization.v1beta1.SelfSubjectRulesReview" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeSelfSubjectRulesReviewV1Beta1Props) { + super(scope, id, KubeSelfSubjectRulesReviewV1Beta1.manifest(props)); + } +} + +/** + * SubjectAccessReview checks whether or not a user or group can perform an action. + * + * @schema io.k8s.api.authorization.v1beta1.SubjectAccessReview + */ +export class KubeSubjectAccessReviewV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.authorization.v1beta1.SubjectAccessReview" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'authorization.k8s.io/v1beta1', + kind: 'SubjectAccessReview', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.authorization.v1beta1.SubjectAccessReview". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeSubjectAccessReviewV1Beta1Props): any { + return { + ...KubeSubjectAccessReviewV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.authorization.v1beta1.SubjectAccessReview" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeSubjectAccessReviewV1Beta1Props) { + super(scope, id, KubeSubjectAccessReviewV1Beta1.manifest(props)); + } +} + +/** + * configuration of a horizontal pod autoscaler. + * + * @schema io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler + */ +export class KubeHorizontalPodAutoscaler extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'autoscaling/v1', + kind: 'HorizontalPodAutoscaler', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeHorizontalPodAutoscalerProps = {}): any { + return { + ...KubeHorizontalPodAutoscaler.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeHorizontalPodAutoscalerProps = {}) { + super(scope, id, KubeHorizontalPodAutoscaler.manifest(props)); + } +} + +/** + * list of horizontal pod autoscaler objects. + * + * @schema io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerList + */ +export class KubeHorizontalPodAutoscalerList extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'autoscaling/v1', + kind: 'HorizontalPodAutoscalerList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeHorizontalPodAutoscalerListProps): any { + return { + ...KubeHorizontalPodAutoscalerList.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeHorizontalPodAutoscalerListProps) { + super(scope, id, KubeHorizontalPodAutoscalerList.manifest(props)); + } +} + +/** + * Scale represents a scaling request for a resource. + * + * @schema io.k8s.api.autoscaling.v1.Scale + */ +export class KubeScale extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.autoscaling.v1.Scale" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'autoscaling/v1', + kind: 'Scale', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.autoscaling.v1.Scale". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeScaleProps = {}): any { + return { + ...KubeScale.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.autoscaling.v1.Scale" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeScaleProps = {}) { + super(scope, id, KubeScale.manifest(props)); + } +} + +/** + * HorizontalPodAutoscaler is the configuration for a horizontal pod autoscaler, which automatically manages the replica count of any resource implementing the scale subresource based on the metrics specified. + * + * @schema io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler + */ +export class KubeHorizontalPodAutoscalerV2Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'autoscaling/v2beta1', + kind: 'HorizontalPodAutoscaler', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeHorizontalPodAutoscalerV2Beta1Props = {}): any { + return { + ...KubeHorizontalPodAutoscalerV2Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeHorizontalPodAutoscalerV2Beta1Props = {}) { + super(scope, id, KubeHorizontalPodAutoscalerV2Beta1.manifest(props)); + } +} + +/** + * HorizontalPodAutoscaler is a list of horizontal pod autoscaler objects. + * + * @schema io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerList + */ +export class KubeHorizontalPodAutoscalerListV2Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'autoscaling/v2beta1', + kind: 'HorizontalPodAutoscalerList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeHorizontalPodAutoscalerListV2Beta1Props): any { + return { + ...KubeHorizontalPodAutoscalerListV2Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeHorizontalPodAutoscalerListV2Beta1Props) { + super(scope, id, KubeHorizontalPodAutoscalerListV2Beta1.manifest(props)); + } +} + +/** + * HorizontalPodAutoscaler is the configuration for a horizontal pod autoscaler, which automatically manages the replica count of any resource implementing the scale subresource based on the metrics specified. + * + * @schema io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler + */ +export class KubeHorizontalPodAutoscalerV2Beta2 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'autoscaling/v2beta2', + kind: 'HorizontalPodAutoscaler', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeHorizontalPodAutoscalerV2Beta2Props = {}): any { + return { + ...KubeHorizontalPodAutoscalerV2Beta2.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeHorizontalPodAutoscalerV2Beta2Props = {}) { + super(scope, id, KubeHorizontalPodAutoscalerV2Beta2.manifest(props)); + } +} + +/** + * HorizontalPodAutoscalerList is a list of horizontal pod autoscaler objects. + * + * @schema io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerList + */ +export class KubeHorizontalPodAutoscalerListV2Beta2 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'autoscaling/v2beta2', + kind: 'HorizontalPodAutoscalerList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeHorizontalPodAutoscalerListV2Beta2Props): any { + return { + ...KubeHorizontalPodAutoscalerListV2Beta2.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeHorizontalPodAutoscalerListV2Beta2Props) { + super(scope, id, KubeHorizontalPodAutoscalerListV2Beta2.manifest(props)); + } +} + +/** + * Job represents the configuration of a single job. + * + * @schema io.k8s.api.batch.v1.Job + */ +export class KubeJob extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.batch.v1.Job" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'batch/v1', + kind: 'Job', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.batch.v1.Job". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeJobProps = {}): any { + return { + ...KubeJob.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.batch.v1.Job" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeJobProps = {}) { + super(scope, id, KubeJob.manifest(props)); + } +} + +/** + * JobList is a collection of jobs. + * + * @schema io.k8s.api.batch.v1.JobList + */ +export class KubeJobList extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.batch.v1.JobList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'batch/v1', + kind: 'JobList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.batch.v1.JobList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeJobListProps): any { + return { + ...KubeJobList.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.batch.v1.JobList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeJobListProps) { + super(scope, id, KubeJobList.manifest(props)); + } +} + +/** + * CronJob represents the configuration of a single cron job. + * + * @schema io.k8s.api.batch.v1beta1.CronJob + */ +export class KubeCronJobV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.batch.v1beta1.CronJob" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'batch/v1beta1', + kind: 'CronJob', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.batch.v1beta1.CronJob". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeCronJobV1Beta1Props = {}): any { + return { + ...KubeCronJobV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.batch.v1beta1.CronJob" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeCronJobV1Beta1Props = {}) { + super(scope, id, KubeCronJobV1Beta1.manifest(props)); + } +} + +/** + * CronJobList is a collection of cron jobs. + * + * @schema io.k8s.api.batch.v1beta1.CronJobList + */ +export class KubeCronJobListV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.batch.v1beta1.CronJobList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'batch/v1beta1', + kind: 'CronJobList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.batch.v1beta1.CronJobList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeCronJobListV1Beta1Props): any { + return { + ...KubeCronJobListV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.batch.v1beta1.CronJobList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeCronJobListV1Beta1Props) { + super(scope, id, KubeCronJobListV1Beta1.manifest(props)); + } +} + +/** + * CronJob represents the configuration of a single cron job. + * + * @schema io.k8s.api.batch.v2alpha1.CronJob + */ +export class KubeCronJobV2Alpha1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.batch.v2alpha1.CronJob" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'batch/v2alpha1', + kind: 'CronJob', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.batch.v2alpha1.CronJob". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeCronJobV2Alpha1Props = {}): any { + return { + ...KubeCronJobV2Alpha1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.batch.v2alpha1.CronJob" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeCronJobV2Alpha1Props = {}) { + super(scope, id, KubeCronJobV2Alpha1.manifest(props)); + } +} + +/** + * CronJobList is a collection of cron jobs. + * + * @schema io.k8s.api.batch.v2alpha1.CronJobList + */ +export class KubeCronJobListV2Alpha1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.batch.v2alpha1.CronJobList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'batch/v2alpha1', + kind: 'CronJobList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.batch.v2alpha1.CronJobList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeCronJobListV2Alpha1Props): any { + return { + ...KubeCronJobListV2Alpha1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.batch.v2alpha1.CronJobList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeCronJobListV2Alpha1Props) { + super(scope, id, KubeCronJobListV2Alpha1.manifest(props)); + } +} + +/** + * Describes a certificate signing request + * + * @schema io.k8s.api.certificates.v1beta1.CertificateSigningRequest + */ +export class KubeCertificateSigningRequestV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.certificates.v1beta1.CertificateSigningRequest" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'certificates.k8s.io/v1beta1', + kind: 'CertificateSigningRequest', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.certificates.v1beta1.CertificateSigningRequest". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeCertificateSigningRequestV1Beta1Props = {}): any { + return { + ...KubeCertificateSigningRequestV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.certificates.v1beta1.CertificateSigningRequest" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeCertificateSigningRequestV1Beta1Props = {}) { + super(scope, id, KubeCertificateSigningRequestV1Beta1.manifest(props)); + } +} + +/** + * + * + * @schema io.k8s.api.certificates.v1beta1.CertificateSigningRequestList + */ +export class KubeCertificateSigningRequestListV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.certificates.v1beta1.CertificateSigningRequestList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'certificates.k8s.io/v1beta1', + kind: 'CertificateSigningRequestList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.certificates.v1beta1.CertificateSigningRequestList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeCertificateSigningRequestListV1Beta1Props): any { + return { + ...KubeCertificateSigningRequestListV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.certificates.v1beta1.CertificateSigningRequestList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeCertificateSigningRequestListV1Beta1Props) { + super(scope, id, KubeCertificateSigningRequestListV1Beta1.manifest(props)); + } +} + +/** + * Lease defines a lease concept. + * + * @schema io.k8s.api.coordination.v1.Lease + */ +export class KubeLease extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.coordination.v1.Lease" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'coordination.k8s.io/v1', + kind: 'Lease', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.coordination.v1.Lease". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeLeaseProps = {}): any { + return { + ...KubeLease.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.coordination.v1.Lease" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeLeaseProps = {}) { + super(scope, id, KubeLease.manifest(props)); + } +} + +/** + * LeaseList is a list of Lease objects. + * + * @schema io.k8s.api.coordination.v1.LeaseList + */ +export class KubeLeaseList extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.coordination.v1.LeaseList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'coordination.k8s.io/v1', + kind: 'LeaseList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.coordination.v1.LeaseList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeLeaseListProps): any { + return { + ...KubeLeaseList.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.coordination.v1.LeaseList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeLeaseListProps) { + super(scope, id, KubeLeaseList.manifest(props)); + } +} + +/** + * Lease defines a lease concept. + * + * @schema io.k8s.api.coordination.v1beta1.Lease + */ +export class KubeLeaseV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.coordination.v1beta1.Lease" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'coordination.k8s.io/v1beta1', + kind: 'Lease', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.coordination.v1beta1.Lease". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeLeaseV1Beta1Props = {}): any { + return { + ...KubeLeaseV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.coordination.v1beta1.Lease" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeLeaseV1Beta1Props = {}) { + super(scope, id, KubeLeaseV1Beta1.manifest(props)); + } +} + +/** + * LeaseList is a list of Lease objects. + * + * @schema io.k8s.api.coordination.v1beta1.LeaseList + */ +export class KubeLeaseListV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.coordination.v1beta1.LeaseList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'coordination.k8s.io/v1beta1', + kind: 'LeaseList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.coordination.v1beta1.LeaseList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeLeaseListV1Beta1Props): any { + return { + ...KubeLeaseListV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.coordination.v1beta1.LeaseList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeLeaseListV1Beta1Props) { + super(scope, id, KubeLeaseListV1Beta1.manifest(props)); + } +} + +/** + * Binding ties one object to another; for example, a pod is bound to a node by a scheduler. Deprecated in 1.7, please use the bindings subresource of pods instead. + * + * @schema io.k8s.api.core.v1.Binding + */ +export class KubeBinding extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.core.v1.Binding" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'v1', + kind: 'Binding', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.core.v1.Binding". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeBindingProps): any { + return { + ...KubeBinding.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.core.v1.Binding" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeBindingProps) { + super(scope, id, KubeBinding.manifest(props)); + } +} + +/** + * ComponentStatus (and ComponentStatusList) holds the cluster validation info. + * + * @schema io.k8s.api.core.v1.ComponentStatus + */ +export class KubeComponentStatus extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.core.v1.ComponentStatus" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'v1', + kind: 'ComponentStatus', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.core.v1.ComponentStatus". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeComponentStatusProps = {}): any { + return { + ...KubeComponentStatus.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.core.v1.ComponentStatus" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeComponentStatusProps = {}) { + super(scope, id, KubeComponentStatus.manifest(props)); + } +} + +/** + * Status of all the conditions for the component as a list of ComponentStatus objects. + * + * @schema io.k8s.api.core.v1.ComponentStatusList + */ +export class KubeComponentStatusList extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.core.v1.ComponentStatusList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'v1', + kind: 'ComponentStatusList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.core.v1.ComponentStatusList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeComponentStatusListProps): any { + return { + ...KubeComponentStatusList.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.core.v1.ComponentStatusList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeComponentStatusListProps) { + super(scope, id, KubeComponentStatusList.manifest(props)); + } +} + +/** + * ConfigMap holds configuration data for pods to consume. + * + * @schema io.k8s.api.core.v1.ConfigMap + */ +export class KubeConfigMap extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.core.v1.ConfigMap" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'v1', + kind: 'ConfigMap', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.core.v1.ConfigMap". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeConfigMapProps = {}): any { + return { + ...KubeConfigMap.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.core.v1.ConfigMap" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeConfigMapProps = {}) { + super(scope, id, KubeConfigMap.manifest(props)); + } +} + +/** + * ConfigMapList is a resource containing a list of ConfigMap objects. + * + * @schema io.k8s.api.core.v1.ConfigMapList + */ +export class KubeConfigMapList extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.core.v1.ConfigMapList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'v1', + kind: 'ConfigMapList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.core.v1.ConfigMapList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeConfigMapListProps): any { + return { + ...KubeConfigMapList.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.core.v1.ConfigMapList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeConfigMapListProps) { + super(scope, id, KubeConfigMapList.manifest(props)); + } +} + +/** + * Endpoints is a collection of endpoints that implement the actual service. Example: + Name: "mysvc", + Subsets: [ + { + Addresses: [{"ip": "10.10.1.1"}, {"ip": "10.10.2.2"}], + Ports: [{"name": "a", "port": 8675}, {"name": "b", "port": 309}] + }, + { + Addresses: [{"ip": "10.10.3.3"}], + Ports: [{"name": "a", "port": 93}, {"name": "b", "port": 76}] + }, + ] + * + * @schema io.k8s.api.core.v1.Endpoints + */ +export class KubeEndpoints extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.core.v1.Endpoints" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'v1', + kind: 'Endpoints', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.core.v1.Endpoints". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeEndpointsProps = {}): any { + return { + ...KubeEndpoints.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.core.v1.Endpoints" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeEndpointsProps = {}) { + super(scope, id, KubeEndpoints.manifest(props)); + } +} + +/** + * EndpointsList is a list of endpoints. + * + * @schema io.k8s.api.core.v1.EndpointsList + */ +export class KubeEndpointsList extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.core.v1.EndpointsList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'v1', + kind: 'EndpointsList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.core.v1.EndpointsList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeEndpointsListProps): any { + return { + ...KubeEndpointsList.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.core.v1.EndpointsList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeEndpointsListProps) { + super(scope, id, KubeEndpointsList.manifest(props)); + } +} + +/** + * Event is a report of an event somewhere in the cluster. + * + * @schema io.k8s.api.core.v1.Event + */ +export class KubeEvent extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.core.v1.Event" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'v1', + kind: 'Event', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.core.v1.Event". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeEventProps): any { + return { + ...KubeEvent.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.core.v1.Event" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeEventProps) { + super(scope, id, KubeEvent.manifest(props)); + } +} + +/** + * EventList is a list of events. + * + * @schema io.k8s.api.core.v1.EventList + */ +export class KubeEventList extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.core.v1.EventList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'v1', + kind: 'EventList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.core.v1.EventList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeEventListProps): any { + return { + ...KubeEventList.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.core.v1.EventList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeEventListProps) { + super(scope, id, KubeEventList.manifest(props)); + } +} + +/** + * LimitRange sets resource usage limits for each kind of resource in a Namespace. + * + * @schema io.k8s.api.core.v1.LimitRange + */ +export class KubeLimitRange extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.core.v1.LimitRange" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'v1', + kind: 'LimitRange', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.core.v1.LimitRange". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeLimitRangeProps = {}): any { + return { + ...KubeLimitRange.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.core.v1.LimitRange" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeLimitRangeProps = {}) { + super(scope, id, KubeLimitRange.manifest(props)); + } +} + +/** + * LimitRangeList is a list of LimitRange items. + * + * @schema io.k8s.api.core.v1.LimitRangeList + */ +export class KubeLimitRangeList extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.core.v1.LimitRangeList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'v1', + kind: 'LimitRangeList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.core.v1.LimitRangeList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeLimitRangeListProps): any { + return { + ...KubeLimitRangeList.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.core.v1.LimitRangeList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeLimitRangeListProps) { + super(scope, id, KubeLimitRangeList.manifest(props)); + } +} + +/** + * Namespace provides a scope for Names. Use of multiple namespaces is optional. + * + * @schema io.k8s.api.core.v1.Namespace + */ +export class KubeNamespace extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.core.v1.Namespace" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'v1', + kind: 'Namespace', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.core.v1.Namespace". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeNamespaceProps = {}): any { + return { + ...KubeNamespace.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.core.v1.Namespace" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeNamespaceProps = {}) { + super(scope, id, KubeNamespace.manifest(props)); + } +} + +/** + * NamespaceList is a list of Namespaces. + * + * @schema io.k8s.api.core.v1.NamespaceList + */ +export class KubeNamespaceList extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.core.v1.NamespaceList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'v1', + kind: 'NamespaceList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.core.v1.NamespaceList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeNamespaceListProps): any { + return { + ...KubeNamespaceList.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.core.v1.NamespaceList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeNamespaceListProps) { + super(scope, id, KubeNamespaceList.manifest(props)); + } +} + +/** + * Node is a worker node in Kubernetes. Each node will have a unique identifier in the cache (i.e. in etcd). + * + * @schema io.k8s.api.core.v1.Node + */ +export class KubeNode extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.core.v1.Node" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'v1', + kind: 'Node', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.core.v1.Node". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeNodeProps = {}): any { + return { + ...KubeNode.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.core.v1.Node" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeNodeProps = {}) { + super(scope, id, KubeNode.manifest(props)); + } +} + +/** + * NodeList is the whole list of all Nodes which have been registered with master. + * + * @schema io.k8s.api.core.v1.NodeList + */ +export class KubeNodeList extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.core.v1.NodeList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'v1', + kind: 'NodeList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.core.v1.NodeList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeNodeListProps): any { + return { + ...KubeNodeList.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.core.v1.NodeList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeNodeListProps) { + super(scope, id, KubeNodeList.manifest(props)); + } +} + +/** + * PersistentVolume (PV) is a storage resource provisioned by an administrator. It is analogous to a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes + * + * @schema io.k8s.api.core.v1.PersistentVolume + */ +export class KubePersistentVolume extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.core.v1.PersistentVolume" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'v1', + kind: 'PersistentVolume', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.core.v1.PersistentVolume". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubePersistentVolumeProps = {}): any { + return { + ...KubePersistentVolume.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.core.v1.PersistentVolume" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubePersistentVolumeProps = {}) { + super(scope, id, KubePersistentVolume.manifest(props)); + } +} + +/** + * PersistentVolumeClaim is a user's request for and claim to a persistent volume + * + * @schema io.k8s.api.core.v1.PersistentVolumeClaim + */ +export class KubePersistentVolumeClaim extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.core.v1.PersistentVolumeClaim" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'v1', + kind: 'PersistentVolumeClaim', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.core.v1.PersistentVolumeClaim". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubePersistentVolumeClaimProps = {}): any { + return { + ...KubePersistentVolumeClaim.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.core.v1.PersistentVolumeClaim" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubePersistentVolumeClaimProps = {}) { + super(scope, id, KubePersistentVolumeClaim.manifest(props)); + } +} + +/** + * PersistentVolumeClaimList is a list of PersistentVolumeClaim items. + * + * @schema io.k8s.api.core.v1.PersistentVolumeClaimList + */ +export class KubePersistentVolumeClaimList extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.core.v1.PersistentVolumeClaimList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'v1', + kind: 'PersistentVolumeClaimList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.core.v1.PersistentVolumeClaimList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubePersistentVolumeClaimListProps): any { + return { + ...KubePersistentVolumeClaimList.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.core.v1.PersistentVolumeClaimList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubePersistentVolumeClaimListProps) { + super(scope, id, KubePersistentVolumeClaimList.manifest(props)); + } +} + +/** + * PersistentVolumeList is a list of PersistentVolume items. + * + * @schema io.k8s.api.core.v1.PersistentVolumeList + */ +export class KubePersistentVolumeList extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.core.v1.PersistentVolumeList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'v1', + kind: 'PersistentVolumeList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.core.v1.PersistentVolumeList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubePersistentVolumeListProps): any { + return { + ...KubePersistentVolumeList.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.core.v1.PersistentVolumeList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubePersistentVolumeListProps) { + super(scope, id, KubePersistentVolumeList.manifest(props)); + } +} + +/** + * Pod is a collection of containers that can run on a host. This resource is created by clients and scheduled onto hosts. + * + * @schema io.k8s.api.core.v1.Pod + */ +export class KubePod extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.core.v1.Pod" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'v1', + kind: 'Pod', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.core.v1.Pod". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubePodProps = {}): any { + return { + ...KubePod.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.core.v1.Pod" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubePodProps = {}) { + super(scope, id, KubePod.manifest(props)); + } +} + +/** + * PodList is a list of Pods. + * + * @schema io.k8s.api.core.v1.PodList + */ +export class KubePodList extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.core.v1.PodList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'v1', + kind: 'PodList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.core.v1.PodList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubePodListProps): any { + return { + ...KubePodList.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.core.v1.PodList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubePodListProps) { + super(scope, id, KubePodList.manifest(props)); + } +} + +/** + * PodTemplate describes a template for creating copies of a predefined pod. + * + * @schema io.k8s.api.core.v1.PodTemplate + */ +export class KubePodTemplate extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.core.v1.PodTemplate" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'v1', + kind: 'PodTemplate', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.core.v1.PodTemplate". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubePodTemplateProps = {}): any { + return { + ...KubePodTemplate.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.core.v1.PodTemplate" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubePodTemplateProps = {}) { + super(scope, id, KubePodTemplate.manifest(props)); + } +} + +/** + * PodTemplateList is a list of PodTemplates. + * + * @schema io.k8s.api.core.v1.PodTemplateList + */ +export class KubePodTemplateList extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.core.v1.PodTemplateList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'v1', + kind: 'PodTemplateList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.core.v1.PodTemplateList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubePodTemplateListProps): any { + return { + ...KubePodTemplateList.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.core.v1.PodTemplateList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubePodTemplateListProps) { + super(scope, id, KubePodTemplateList.manifest(props)); + } +} + +/** + * ReplicationController represents the configuration of a replication controller. + * + * @schema io.k8s.api.core.v1.ReplicationController + */ +export class KubeReplicationController extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.core.v1.ReplicationController" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'v1', + kind: 'ReplicationController', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.core.v1.ReplicationController". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeReplicationControllerProps = {}): any { + return { + ...KubeReplicationController.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.core.v1.ReplicationController" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeReplicationControllerProps = {}) { + super(scope, id, KubeReplicationController.manifest(props)); + } +} + +/** + * ReplicationControllerList is a collection of replication controllers. + * + * @schema io.k8s.api.core.v1.ReplicationControllerList + */ +export class KubeReplicationControllerList extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.core.v1.ReplicationControllerList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'v1', + kind: 'ReplicationControllerList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.core.v1.ReplicationControllerList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeReplicationControllerListProps): any { + return { + ...KubeReplicationControllerList.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.core.v1.ReplicationControllerList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeReplicationControllerListProps) { + super(scope, id, KubeReplicationControllerList.manifest(props)); + } +} + +/** + * ResourceQuota sets aggregate quota restrictions enforced per namespace + * + * @schema io.k8s.api.core.v1.ResourceQuota + */ +export class KubeResourceQuota extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.core.v1.ResourceQuota" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'v1', + kind: 'ResourceQuota', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.core.v1.ResourceQuota". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeResourceQuotaProps = {}): any { + return { + ...KubeResourceQuota.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.core.v1.ResourceQuota" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeResourceQuotaProps = {}) { + super(scope, id, KubeResourceQuota.manifest(props)); + } +} + +/** + * ResourceQuotaList is a list of ResourceQuota items. + * + * @schema io.k8s.api.core.v1.ResourceQuotaList + */ +export class KubeResourceQuotaList extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.core.v1.ResourceQuotaList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'v1', + kind: 'ResourceQuotaList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.core.v1.ResourceQuotaList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeResourceQuotaListProps): any { + return { + ...KubeResourceQuotaList.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.core.v1.ResourceQuotaList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeResourceQuotaListProps) { + super(scope, id, KubeResourceQuotaList.manifest(props)); + } +} + +/** + * Secret holds secret data of a certain type. The total bytes of the values in the Data field must be less than MaxSecretSize bytes. + * + * @schema io.k8s.api.core.v1.Secret + */ +export class KubeSecret extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.core.v1.Secret" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'v1', + kind: 'Secret', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.core.v1.Secret". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeSecretProps = {}): any { + return { + ...KubeSecret.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.core.v1.Secret" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeSecretProps = {}) { + super(scope, id, KubeSecret.manifest(props)); + } +} + +/** + * SecretList is a list of Secret. + * + * @schema io.k8s.api.core.v1.SecretList + */ +export class KubeSecretList extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.core.v1.SecretList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'v1', + kind: 'SecretList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.core.v1.SecretList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeSecretListProps): any { + return { + ...KubeSecretList.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.core.v1.SecretList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeSecretListProps) { + super(scope, id, KubeSecretList.manifest(props)); + } +} + +/** + * Service is a named abstraction of software service (for example, mysql) consisting of local port (for example 3306) that the proxy listens on, and the selector that determines which pods will answer requests sent through the proxy. + * + * @schema io.k8s.api.core.v1.Service + */ +export class KubeService extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.core.v1.Service" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'v1', + kind: 'Service', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.core.v1.Service". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeServiceProps = {}): any { + return { + ...KubeService.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.core.v1.Service" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeServiceProps = {}) { + super(scope, id, KubeService.manifest(props)); + } +} + +/** + * ServiceAccount binds together: * a name, understood by users, and perhaps by peripheral systems, for an identity * a principal that can be authenticated and authorized * a set of secrets + * + * @schema io.k8s.api.core.v1.ServiceAccount + */ +export class KubeServiceAccount extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.core.v1.ServiceAccount" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'v1', + kind: 'ServiceAccount', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.core.v1.ServiceAccount". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeServiceAccountProps = {}): any { + return { + ...KubeServiceAccount.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.core.v1.ServiceAccount" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeServiceAccountProps = {}) { + super(scope, id, KubeServiceAccount.manifest(props)); + } +} + +/** + * ServiceAccountList is a list of ServiceAccount objects + * + * @schema io.k8s.api.core.v1.ServiceAccountList + */ +export class KubeServiceAccountList extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.core.v1.ServiceAccountList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'v1', + kind: 'ServiceAccountList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.core.v1.ServiceAccountList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeServiceAccountListProps): any { + return { + ...KubeServiceAccountList.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.core.v1.ServiceAccountList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeServiceAccountListProps) { + super(scope, id, KubeServiceAccountList.manifest(props)); + } +} + +/** + * ServiceList holds a list of services. + * + * @schema io.k8s.api.core.v1.ServiceList + */ +export class KubeServiceList extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.core.v1.ServiceList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'v1', + kind: 'ServiceList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.core.v1.ServiceList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeServiceListProps): any { + return { + ...KubeServiceList.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.core.v1.ServiceList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeServiceListProps) { + super(scope, id, KubeServiceList.manifest(props)); + } +} + +/** + * Event is a report of an event somewhere in the cluster. It generally denotes some state change in the system. + * + * @schema io.k8s.api.events.v1beta1.Event + */ +export class KubeEventV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.events.v1beta1.Event" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'events.k8s.io/v1beta1', + kind: 'Event', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.events.v1beta1.Event". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeEventV1Beta1Props): any { + return { + ...KubeEventV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.events.v1beta1.Event" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeEventV1Beta1Props) { + super(scope, id, KubeEventV1Beta1.manifest(props)); + } +} + +/** + * EventList is a list of Event objects. + * + * @schema io.k8s.api.events.v1beta1.EventList + */ +export class KubeEventListV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.events.v1beta1.EventList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'events.k8s.io/v1beta1', + kind: 'EventList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.events.v1beta1.EventList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeEventListV1Beta1Props): any { + return { + ...KubeEventListV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.events.v1beta1.EventList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeEventListV1Beta1Props) { + super(scope, id, KubeEventListV1Beta1.manifest(props)); + } +} + +/** + * DEPRECATED - This group version of DaemonSet is deprecated by apps/v1beta2/DaemonSet. See the release notes for more information. DaemonSet represents the configuration of a daemon set. + * + * @schema io.k8s.api.extensions.v1beta1.DaemonSet + */ +export class KubeDaemonSetV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.extensions.v1beta1.DaemonSet" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'extensions/v1beta1', + kind: 'DaemonSet', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.extensions.v1beta1.DaemonSet". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeDaemonSetV1Beta1Props = {}): any { + return { + ...KubeDaemonSetV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.extensions.v1beta1.DaemonSet" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeDaemonSetV1Beta1Props = {}) { + super(scope, id, KubeDaemonSetV1Beta1.manifest(props)); + } +} + +/** + * DaemonSetList is a collection of daemon sets. + * + * @schema io.k8s.api.extensions.v1beta1.DaemonSetList + */ +export class KubeDaemonSetListV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.extensions.v1beta1.DaemonSetList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'extensions/v1beta1', + kind: 'DaemonSetList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.extensions.v1beta1.DaemonSetList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeDaemonSetListV1Beta1Props): any { + return { + ...KubeDaemonSetListV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.extensions.v1beta1.DaemonSetList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeDaemonSetListV1Beta1Props) { + super(scope, id, KubeDaemonSetListV1Beta1.manifest(props)); + } +} + +/** + * Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc. + * + * @schema io.k8s.api.networking.v1beta1.Ingress + */ +export class KubeIngressV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.networking.v1beta1.Ingress" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'networking.k8s.io/v1beta1', + kind: 'Ingress', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.networking.v1beta1.Ingress". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeIngressV1Beta1Props = {}): any { + return { + ...KubeIngressV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.networking.v1beta1.Ingress" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeIngressV1Beta1Props = {}) { + super(scope, id, KubeIngressV1Beta1.manifest(props)); + } +} + +/** + * IngressList is a collection of Ingress. + * + * @schema io.k8s.api.networking.v1beta1.IngressList + */ +export class KubeIngressListV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.networking.v1beta1.IngressList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'networking.k8s.io/v1beta1', + kind: 'IngressList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.networking.v1beta1.IngressList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeIngressListV1Beta1Props): any { + return { + ...KubeIngressListV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.networking.v1beta1.IngressList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeIngressListV1Beta1Props) { + super(scope, id, KubeIngressListV1Beta1.manifest(props)); + } +} + +/** + * DEPRECATED 1.9 - This group version of NetworkPolicy is deprecated by networking/v1/NetworkPolicy. NetworkPolicy describes what network traffic is allowed for a set of Pods + * + * @schema io.k8s.api.extensions.v1beta1.NetworkPolicy + */ +export class KubeNetworkPolicyV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.extensions.v1beta1.NetworkPolicy" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'extensions/v1beta1', + kind: 'NetworkPolicy', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.extensions.v1beta1.NetworkPolicy". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeNetworkPolicyV1Beta1Props = {}): any { + return { + ...KubeNetworkPolicyV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.extensions.v1beta1.NetworkPolicy" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeNetworkPolicyV1Beta1Props = {}) { + super(scope, id, KubeNetworkPolicyV1Beta1.manifest(props)); + } +} + +/** + * DEPRECATED 1.9 - This group version of NetworkPolicyList is deprecated by networking/v1/NetworkPolicyList. Network Policy List is a list of NetworkPolicy objects. + * + * @schema io.k8s.api.extensions.v1beta1.NetworkPolicyList + */ +export class KubeNetworkPolicyListV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.extensions.v1beta1.NetworkPolicyList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'extensions/v1beta1', + kind: 'NetworkPolicyList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.extensions.v1beta1.NetworkPolicyList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeNetworkPolicyListV1Beta1Props): any { + return { + ...KubeNetworkPolicyListV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.extensions.v1beta1.NetworkPolicyList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeNetworkPolicyListV1Beta1Props) { + super(scope, id, KubeNetworkPolicyListV1Beta1.manifest(props)); + } +} + +/** + * PodSecurityPolicy governs the ability to make requests that affect the Security Context that will be applied to a pod and container. + * + * @schema io.k8s.api.policy.v1beta1.PodSecurityPolicy + */ +export class KubePodSecurityPolicyV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.policy.v1beta1.PodSecurityPolicy" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'policy/v1beta1', + kind: 'PodSecurityPolicy', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.policy.v1beta1.PodSecurityPolicy". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubePodSecurityPolicyV1Beta1Props = {}): any { + return { + ...KubePodSecurityPolicyV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.policy.v1beta1.PodSecurityPolicy" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubePodSecurityPolicyV1Beta1Props = {}) { + super(scope, id, KubePodSecurityPolicyV1Beta1.manifest(props)); + } +} + +/** + * PodSecurityPolicyList is a list of PodSecurityPolicy objects. + * + * @schema io.k8s.api.policy.v1beta1.PodSecurityPolicyList + */ +export class KubePodSecurityPolicyListV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.policy.v1beta1.PodSecurityPolicyList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'policy/v1beta1', + kind: 'PodSecurityPolicyList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.policy.v1beta1.PodSecurityPolicyList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubePodSecurityPolicyListV1Beta1Props): any { + return { + ...KubePodSecurityPolicyListV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.policy.v1beta1.PodSecurityPolicyList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubePodSecurityPolicyListV1Beta1Props) { + super(scope, id, KubePodSecurityPolicyListV1Beta1.manifest(props)); + } +} + +/** + * DEPRECATED - This group version of ReplicaSet is deprecated by apps/v1beta2/ReplicaSet. See the release notes for more information. ReplicaSet ensures that a specified number of pod replicas are running at any given time. + * + * @schema io.k8s.api.extensions.v1beta1.ReplicaSet + */ +export class KubeReplicaSetV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.extensions.v1beta1.ReplicaSet" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'extensions/v1beta1', + kind: 'ReplicaSet', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.extensions.v1beta1.ReplicaSet". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeReplicaSetV1Beta1Props = {}): any { + return { + ...KubeReplicaSetV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.extensions.v1beta1.ReplicaSet" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeReplicaSetV1Beta1Props = {}) { + super(scope, id, KubeReplicaSetV1Beta1.manifest(props)); + } +} + +/** + * ReplicaSetList is a collection of ReplicaSets. + * + * @schema io.k8s.api.extensions.v1beta1.ReplicaSetList + */ +export class KubeReplicaSetListV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.extensions.v1beta1.ReplicaSetList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'extensions/v1beta1', + kind: 'ReplicaSetList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.extensions.v1beta1.ReplicaSetList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeReplicaSetListV1Beta1Props): any { + return { + ...KubeReplicaSetListV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.extensions.v1beta1.ReplicaSetList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeReplicaSetListV1Beta1Props) { + super(scope, id, KubeReplicaSetListV1Beta1.manifest(props)); + } +} + +/** + * NetworkPolicy describes what network traffic is allowed for a set of Pods + * + * @schema io.k8s.api.networking.v1.NetworkPolicy + */ +export class KubeNetworkPolicy extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.networking.v1.NetworkPolicy" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'networking.k8s.io/v1', + kind: 'NetworkPolicy', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.networking.v1.NetworkPolicy". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeNetworkPolicyProps = {}): any { + return { + ...KubeNetworkPolicy.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.networking.v1.NetworkPolicy" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeNetworkPolicyProps = {}) { + super(scope, id, KubeNetworkPolicy.manifest(props)); + } +} + +/** + * NetworkPolicyList is a list of NetworkPolicy objects. + * + * @schema io.k8s.api.networking.v1.NetworkPolicyList + */ +export class KubeNetworkPolicyList extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.networking.v1.NetworkPolicyList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'networking.k8s.io/v1', + kind: 'NetworkPolicyList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.networking.v1.NetworkPolicyList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeNetworkPolicyListProps): any { + return { + ...KubeNetworkPolicyList.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.networking.v1.NetworkPolicyList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeNetworkPolicyListProps) { + super(scope, id, KubeNetworkPolicyList.manifest(props)); + } +} + +/** + * RuntimeClass defines a class of container runtime supported in the cluster. The RuntimeClass is used to determine which container runtime is used to run all containers in a pod. RuntimeClasses are (currently) manually defined by a user or cluster provisioner, and referenced in the PodSpec. The Kubelet is responsible for resolving the RuntimeClassName reference before running the pod. For more details, see https://git.k8s.io/enhancements/keps/sig-node/runtime-class.md + * + * @schema io.k8s.api.node.v1alpha1.RuntimeClass + */ +export class KubeRuntimeClassV1Alpha1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.node.v1alpha1.RuntimeClass" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'node.k8s.io/v1alpha1', + kind: 'RuntimeClass', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.node.v1alpha1.RuntimeClass". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeRuntimeClassV1Alpha1Props): any { + return { + ...KubeRuntimeClassV1Alpha1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.node.v1alpha1.RuntimeClass" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeRuntimeClassV1Alpha1Props) { + super(scope, id, KubeRuntimeClassV1Alpha1.manifest(props)); + } +} + +/** + * RuntimeClassList is a list of RuntimeClass objects. + * + * @schema io.k8s.api.node.v1alpha1.RuntimeClassList + */ +export class KubeRuntimeClassListV1Alpha1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.node.v1alpha1.RuntimeClassList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'node.k8s.io/v1alpha1', + kind: 'RuntimeClassList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.node.v1alpha1.RuntimeClassList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeRuntimeClassListV1Alpha1Props): any { + return { + ...KubeRuntimeClassListV1Alpha1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.node.v1alpha1.RuntimeClassList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeRuntimeClassListV1Alpha1Props) { + super(scope, id, KubeRuntimeClassListV1Alpha1.manifest(props)); + } +} + +/** + * RuntimeClass defines a class of container runtime supported in the cluster. The RuntimeClass is used to determine which container runtime is used to run all containers in a pod. RuntimeClasses are (currently) manually defined by a user or cluster provisioner, and referenced in the PodSpec. The Kubelet is responsible for resolving the RuntimeClassName reference before running the pod. For more details, see https://git.k8s.io/enhancements/keps/sig-node/runtime-class.md + * + * @schema io.k8s.api.node.v1beta1.RuntimeClass + */ +export class KubeRuntimeClassV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.node.v1beta1.RuntimeClass" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'node.k8s.io/v1beta1', + kind: 'RuntimeClass', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.node.v1beta1.RuntimeClass". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeRuntimeClassV1Beta1Props): any { + return { + ...KubeRuntimeClassV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.node.v1beta1.RuntimeClass" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeRuntimeClassV1Beta1Props) { + super(scope, id, KubeRuntimeClassV1Beta1.manifest(props)); + } +} + +/** + * RuntimeClassList is a list of RuntimeClass objects. + * + * @schema io.k8s.api.node.v1beta1.RuntimeClassList + */ +export class KubeRuntimeClassListV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.node.v1beta1.RuntimeClassList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'node.k8s.io/v1beta1', + kind: 'RuntimeClassList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.node.v1beta1.RuntimeClassList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeRuntimeClassListV1Beta1Props): any { + return { + ...KubeRuntimeClassListV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.node.v1beta1.RuntimeClassList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeRuntimeClassListV1Beta1Props) { + super(scope, id, KubeRuntimeClassListV1Beta1.manifest(props)); + } +} + +/** + * Eviction evicts a pod from its node subject to certain policies and safety constraints. This is a subresource of Pod. A request to cause such an eviction is created by POSTing to .../pods//evictions. + * + * @schema io.k8s.api.policy.v1beta1.Eviction + */ +export class KubeEvictionV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.policy.v1beta1.Eviction" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'policy/v1beta1', + kind: 'Eviction', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.policy.v1beta1.Eviction". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeEvictionV1Beta1Props = {}): any { + return { + ...KubeEvictionV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.policy.v1beta1.Eviction" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeEvictionV1Beta1Props = {}) { + super(scope, id, KubeEvictionV1Beta1.manifest(props)); + } +} + +/** + * PodDisruptionBudget is an object to define the max disruption that can be caused to a collection of pods + * + * @schema io.k8s.api.policy.v1beta1.PodDisruptionBudget + */ +export class KubePodDisruptionBudgetV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.policy.v1beta1.PodDisruptionBudget" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'policy/v1beta1', + kind: 'PodDisruptionBudget', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.policy.v1beta1.PodDisruptionBudget". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubePodDisruptionBudgetV1Beta1Props = {}): any { + return { + ...KubePodDisruptionBudgetV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.policy.v1beta1.PodDisruptionBudget" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubePodDisruptionBudgetV1Beta1Props = {}) { + super(scope, id, KubePodDisruptionBudgetV1Beta1.manifest(props)); + } +} + +/** + * PodDisruptionBudgetList is a collection of PodDisruptionBudgets. + * + * @schema io.k8s.api.policy.v1beta1.PodDisruptionBudgetList + */ +export class KubePodDisruptionBudgetListV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.policy.v1beta1.PodDisruptionBudgetList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'policy/v1beta1', + kind: 'PodDisruptionBudgetList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.policy.v1beta1.PodDisruptionBudgetList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubePodDisruptionBudgetListV1Beta1Props): any { + return { + ...KubePodDisruptionBudgetListV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.policy.v1beta1.PodDisruptionBudgetList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubePodDisruptionBudgetListV1Beta1Props) { + super(scope, id, KubePodDisruptionBudgetListV1Beta1.manifest(props)); + } +} + +/** + * ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding. + * + * @schema io.k8s.api.rbac.v1.ClusterRole + */ +export class KubeClusterRole extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.rbac.v1.ClusterRole" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'rbac.authorization.k8s.io/v1', + kind: 'ClusterRole', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.rbac.v1.ClusterRole". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeClusterRoleProps = {}): any { + return { + ...KubeClusterRole.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.rbac.v1.ClusterRole" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeClusterRoleProps = {}) { + super(scope, id, KubeClusterRole.manifest(props)); + } +} + +/** + * ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject. + * + * @schema io.k8s.api.rbac.v1.ClusterRoleBinding + */ +export class KubeClusterRoleBinding extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.rbac.v1.ClusterRoleBinding" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'rbac.authorization.k8s.io/v1', + kind: 'ClusterRoleBinding', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.rbac.v1.ClusterRoleBinding". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeClusterRoleBindingProps): any { + return { + ...KubeClusterRoleBinding.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.rbac.v1.ClusterRoleBinding" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeClusterRoleBindingProps) { + super(scope, id, KubeClusterRoleBinding.manifest(props)); + } +} + +/** + * ClusterRoleBindingList is a collection of ClusterRoleBindings + * + * @schema io.k8s.api.rbac.v1.ClusterRoleBindingList + */ +export class KubeClusterRoleBindingList extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.rbac.v1.ClusterRoleBindingList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'rbac.authorization.k8s.io/v1', + kind: 'ClusterRoleBindingList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.rbac.v1.ClusterRoleBindingList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeClusterRoleBindingListProps): any { + return { + ...KubeClusterRoleBindingList.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.rbac.v1.ClusterRoleBindingList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeClusterRoleBindingListProps) { + super(scope, id, KubeClusterRoleBindingList.manifest(props)); + } +} + +/** + * ClusterRoleList is a collection of ClusterRoles + * + * @schema io.k8s.api.rbac.v1.ClusterRoleList + */ +export class KubeClusterRoleList extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.rbac.v1.ClusterRoleList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'rbac.authorization.k8s.io/v1', + kind: 'ClusterRoleList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.rbac.v1.ClusterRoleList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeClusterRoleListProps): any { + return { + ...KubeClusterRoleList.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.rbac.v1.ClusterRoleList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeClusterRoleListProps) { + super(scope, id, KubeClusterRoleList.manifest(props)); + } +} + +/** + * Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding. + * + * @schema io.k8s.api.rbac.v1.Role + */ +export class KubeRole extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.rbac.v1.Role" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'rbac.authorization.k8s.io/v1', + kind: 'Role', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.rbac.v1.Role". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeRoleProps = {}): any { + return { + ...KubeRole.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.rbac.v1.Role" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeRoleProps = {}) { + super(scope, id, KubeRole.manifest(props)); + } +} + +/** + * RoleBinding references a role, but does not contain it. It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in. RoleBindings in a given namespace only have effect in that namespace. + * + * @schema io.k8s.api.rbac.v1.RoleBinding + */ +export class KubeRoleBinding extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.rbac.v1.RoleBinding" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'rbac.authorization.k8s.io/v1', + kind: 'RoleBinding', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.rbac.v1.RoleBinding". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeRoleBindingProps): any { + return { + ...KubeRoleBinding.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.rbac.v1.RoleBinding" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeRoleBindingProps) { + super(scope, id, KubeRoleBinding.manifest(props)); + } +} + +/** + * RoleBindingList is a collection of RoleBindings + * + * @schema io.k8s.api.rbac.v1.RoleBindingList + */ +export class KubeRoleBindingList extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.rbac.v1.RoleBindingList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'rbac.authorization.k8s.io/v1', + kind: 'RoleBindingList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.rbac.v1.RoleBindingList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeRoleBindingListProps): any { + return { + ...KubeRoleBindingList.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.rbac.v1.RoleBindingList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeRoleBindingListProps) { + super(scope, id, KubeRoleBindingList.manifest(props)); + } +} + +/** + * RoleList is a collection of Roles + * + * @schema io.k8s.api.rbac.v1.RoleList + */ +export class KubeRoleList extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.rbac.v1.RoleList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'rbac.authorization.k8s.io/v1', + kind: 'RoleList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.rbac.v1.RoleList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeRoleListProps): any { + return { + ...KubeRoleList.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.rbac.v1.RoleList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeRoleListProps) { + super(scope, id, KubeRoleList.manifest(props)); + } +} + +/** + * ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding. + * + * @schema io.k8s.api.rbac.v1alpha1.ClusterRole + */ +export class KubeClusterRoleV1Alpha1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.rbac.v1alpha1.ClusterRole" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'rbac.authorization.k8s.io/v1alpha1', + kind: 'ClusterRole', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.rbac.v1alpha1.ClusterRole". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeClusterRoleV1Alpha1Props = {}): any { + return { + ...KubeClusterRoleV1Alpha1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.rbac.v1alpha1.ClusterRole" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeClusterRoleV1Alpha1Props = {}) { + super(scope, id, KubeClusterRoleV1Alpha1.manifest(props)); + } +} + +/** + * ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject. + * + * @schema io.k8s.api.rbac.v1alpha1.ClusterRoleBinding + */ +export class KubeClusterRoleBindingV1Alpha1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.rbac.v1alpha1.ClusterRoleBinding" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'rbac.authorization.k8s.io/v1alpha1', + kind: 'ClusterRoleBinding', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.rbac.v1alpha1.ClusterRoleBinding". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeClusterRoleBindingV1Alpha1Props): any { + return { + ...KubeClusterRoleBindingV1Alpha1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.rbac.v1alpha1.ClusterRoleBinding" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeClusterRoleBindingV1Alpha1Props) { + super(scope, id, KubeClusterRoleBindingV1Alpha1.manifest(props)); + } +} + +/** + * ClusterRoleBindingList is a collection of ClusterRoleBindings + * + * @schema io.k8s.api.rbac.v1alpha1.ClusterRoleBindingList + */ +export class KubeClusterRoleBindingListV1Alpha1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.rbac.v1alpha1.ClusterRoleBindingList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'rbac.authorization.k8s.io/v1alpha1', + kind: 'ClusterRoleBindingList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.rbac.v1alpha1.ClusterRoleBindingList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeClusterRoleBindingListV1Alpha1Props): any { + return { + ...KubeClusterRoleBindingListV1Alpha1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.rbac.v1alpha1.ClusterRoleBindingList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeClusterRoleBindingListV1Alpha1Props) { + super(scope, id, KubeClusterRoleBindingListV1Alpha1.manifest(props)); + } +} + +/** + * ClusterRoleList is a collection of ClusterRoles + * + * @schema io.k8s.api.rbac.v1alpha1.ClusterRoleList + */ +export class KubeClusterRoleListV1Alpha1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.rbac.v1alpha1.ClusterRoleList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'rbac.authorization.k8s.io/v1alpha1', + kind: 'ClusterRoleList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.rbac.v1alpha1.ClusterRoleList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeClusterRoleListV1Alpha1Props): any { + return { + ...KubeClusterRoleListV1Alpha1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.rbac.v1alpha1.ClusterRoleList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeClusterRoleListV1Alpha1Props) { + super(scope, id, KubeClusterRoleListV1Alpha1.manifest(props)); + } +} + +/** + * Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding. + * + * @schema io.k8s.api.rbac.v1alpha1.Role + */ +export class KubeRoleV1Alpha1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.rbac.v1alpha1.Role" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'rbac.authorization.k8s.io/v1alpha1', + kind: 'Role', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.rbac.v1alpha1.Role". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeRoleV1Alpha1Props = {}): any { + return { + ...KubeRoleV1Alpha1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.rbac.v1alpha1.Role" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeRoleV1Alpha1Props = {}) { + super(scope, id, KubeRoleV1Alpha1.manifest(props)); + } +} + +/** + * RoleBinding references a role, but does not contain it. It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in. RoleBindings in a given namespace only have effect in that namespace. + * + * @schema io.k8s.api.rbac.v1alpha1.RoleBinding + */ +export class KubeRoleBindingV1Alpha1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.rbac.v1alpha1.RoleBinding" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'rbac.authorization.k8s.io/v1alpha1', + kind: 'RoleBinding', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.rbac.v1alpha1.RoleBinding". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeRoleBindingV1Alpha1Props): any { + return { + ...KubeRoleBindingV1Alpha1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.rbac.v1alpha1.RoleBinding" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeRoleBindingV1Alpha1Props) { + super(scope, id, KubeRoleBindingV1Alpha1.manifest(props)); + } +} + +/** + * RoleBindingList is a collection of RoleBindings + * + * @schema io.k8s.api.rbac.v1alpha1.RoleBindingList + */ +export class KubeRoleBindingListV1Alpha1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.rbac.v1alpha1.RoleBindingList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'rbac.authorization.k8s.io/v1alpha1', + kind: 'RoleBindingList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.rbac.v1alpha1.RoleBindingList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeRoleBindingListV1Alpha1Props): any { + return { + ...KubeRoleBindingListV1Alpha1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.rbac.v1alpha1.RoleBindingList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeRoleBindingListV1Alpha1Props) { + super(scope, id, KubeRoleBindingListV1Alpha1.manifest(props)); + } +} + +/** + * RoleList is a collection of Roles + * + * @schema io.k8s.api.rbac.v1alpha1.RoleList + */ +export class KubeRoleListV1Alpha1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.rbac.v1alpha1.RoleList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'rbac.authorization.k8s.io/v1alpha1', + kind: 'RoleList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.rbac.v1alpha1.RoleList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeRoleListV1Alpha1Props): any { + return { + ...KubeRoleListV1Alpha1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.rbac.v1alpha1.RoleList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeRoleListV1Alpha1Props) { + super(scope, id, KubeRoleListV1Alpha1.manifest(props)); + } +} + +/** + * ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding. + * + * @schema io.k8s.api.rbac.v1beta1.ClusterRole + */ +export class KubeClusterRoleV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.rbac.v1beta1.ClusterRole" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'rbac.authorization.k8s.io/v1beta1', + kind: 'ClusterRole', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.rbac.v1beta1.ClusterRole". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeClusterRoleV1Beta1Props = {}): any { + return { + ...KubeClusterRoleV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.rbac.v1beta1.ClusterRole" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeClusterRoleV1Beta1Props = {}) { + super(scope, id, KubeClusterRoleV1Beta1.manifest(props)); + } +} + +/** + * ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject. + * + * @schema io.k8s.api.rbac.v1beta1.ClusterRoleBinding + */ +export class KubeClusterRoleBindingV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.rbac.v1beta1.ClusterRoleBinding" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'rbac.authorization.k8s.io/v1beta1', + kind: 'ClusterRoleBinding', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.rbac.v1beta1.ClusterRoleBinding". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeClusterRoleBindingV1Beta1Props): any { + return { + ...KubeClusterRoleBindingV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.rbac.v1beta1.ClusterRoleBinding" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeClusterRoleBindingV1Beta1Props) { + super(scope, id, KubeClusterRoleBindingV1Beta1.manifest(props)); + } +} + +/** + * ClusterRoleBindingList is a collection of ClusterRoleBindings + * + * @schema io.k8s.api.rbac.v1beta1.ClusterRoleBindingList + */ +export class KubeClusterRoleBindingListV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.rbac.v1beta1.ClusterRoleBindingList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'rbac.authorization.k8s.io/v1beta1', + kind: 'ClusterRoleBindingList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.rbac.v1beta1.ClusterRoleBindingList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeClusterRoleBindingListV1Beta1Props): any { + return { + ...KubeClusterRoleBindingListV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.rbac.v1beta1.ClusterRoleBindingList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeClusterRoleBindingListV1Beta1Props) { + super(scope, id, KubeClusterRoleBindingListV1Beta1.manifest(props)); + } +} + +/** + * ClusterRoleList is a collection of ClusterRoles + * + * @schema io.k8s.api.rbac.v1beta1.ClusterRoleList + */ +export class KubeClusterRoleListV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.rbac.v1beta1.ClusterRoleList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'rbac.authorization.k8s.io/v1beta1', + kind: 'ClusterRoleList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.rbac.v1beta1.ClusterRoleList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeClusterRoleListV1Beta1Props): any { + return { + ...KubeClusterRoleListV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.rbac.v1beta1.ClusterRoleList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeClusterRoleListV1Beta1Props) { + super(scope, id, KubeClusterRoleListV1Beta1.manifest(props)); + } +} + +/** + * Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding. + * + * @schema io.k8s.api.rbac.v1beta1.Role + */ +export class KubeRoleV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.rbac.v1beta1.Role" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'rbac.authorization.k8s.io/v1beta1', + kind: 'Role', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.rbac.v1beta1.Role". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeRoleV1Beta1Props = {}): any { + return { + ...KubeRoleV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.rbac.v1beta1.Role" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeRoleV1Beta1Props = {}) { + super(scope, id, KubeRoleV1Beta1.manifest(props)); + } +} + +/** + * RoleBinding references a role, but does not contain it. It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in. RoleBindings in a given namespace only have effect in that namespace. + * + * @schema io.k8s.api.rbac.v1beta1.RoleBinding + */ +export class KubeRoleBindingV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.rbac.v1beta1.RoleBinding" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'rbac.authorization.k8s.io/v1beta1', + kind: 'RoleBinding', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.rbac.v1beta1.RoleBinding". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeRoleBindingV1Beta1Props): any { + return { + ...KubeRoleBindingV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.rbac.v1beta1.RoleBinding" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeRoleBindingV1Beta1Props) { + super(scope, id, KubeRoleBindingV1Beta1.manifest(props)); + } +} + +/** + * RoleBindingList is a collection of RoleBindings + * + * @schema io.k8s.api.rbac.v1beta1.RoleBindingList + */ +export class KubeRoleBindingListV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.rbac.v1beta1.RoleBindingList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'rbac.authorization.k8s.io/v1beta1', + kind: 'RoleBindingList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.rbac.v1beta1.RoleBindingList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeRoleBindingListV1Beta1Props): any { + return { + ...KubeRoleBindingListV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.rbac.v1beta1.RoleBindingList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeRoleBindingListV1Beta1Props) { + super(scope, id, KubeRoleBindingListV1Beta1.manifest(props)); + } +} + +/** + * RoleList is a collection of Roles + * + * @schema io.k8s.api.rbac.v1beta1.RoleList + */ +export class KubeRoleListV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.rbac.v1beta1.RoleList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'rbac.authorization.k8s.io/v1beta1', + kind: 'RoleList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.rbac.v1beta1.RoleList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeRoleListV1Beta1Props): any { + return { + ...KubeRoleListV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.rbac.v1beta1.RoleList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeRoleListV1Beta1Props) { + super(scope, id, KubeRoleListV1Beta1.manifest(props)); + } +} + +/** + * PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer. + * + * @schema io.k8s.api.scheduling.v1.PriorityClass + */ +export class KubePriorityClass extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.scheduling.v1.PriorityClass" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'scheduling.k8s.io/v1', + kind: 'PriorityClass', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.scheduling.v1.PriorityClass". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubePriorityClassProps): any { + return { + ...KubePriorityClass.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.scheduling.v1.PriorityClass" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubePriorityClassProps) { + super(scope, id, KubePriorityClass.manifest(props)); + } +} + +/** + * PriorityClassList is a collection of priority classes. + * + * @schema io.k8s.api.scheduling.v1.PriorityClassList + */ +export class KubePriorityClassList extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.scheduling.v1.PriorityClassList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'scheduling.k8s.io/v1', + kind: 'PriorityClassList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.scheduling.v1.PriorityClassList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubePriorityClassListProps): any { + return { + ...KubePriorityClassList.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.scheduling.v1.PriorityClassList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubePriorityClassListProps) { + super(scope, id, KubePriorityClassList.manifest(props)); + } +} + +/** + * DEPRECATED - This group version of PriorityClass is deprecated by scheduling.k8s.io/v1/PriorityClass. PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer. + * + * @schema io.k8s.api.scheduling.v1alpha1.PriorityClass + */ +export class KubePriorityClassV1Alpha1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.scheduling.v1alpha1.PriorityClass" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'scheduling.k8s.io/v1alpha1', + kind: 'PriorityClass', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.scheduling.v1alpha1.PriorityClass". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubePriorityClassV1Alpha1Props): any { + return { + ...KubePriorityClassV1Alpha1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.scheduling.v1alpha1.PriorityClass" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubePriorityClassV1Alpha1Props) { + super(scope, id, KubePriorityClassV1Alpha1.manifest(props)); + } +} + +/** + * PriorityClassList is a collection of priority classes. + * + * @schema io.k8s.api.scheduling.v1alpha1.PriorityClassList + */ +export class KubePriorityClassListV1Alpha1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.scheduling.v1alpha1.PriorityClassList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'scheduling.k8s.io/v1alpha1', + kind: 'PriorityClassList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.scheduling.v1alpha1.PriorityClassList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubePriorityClassListV1Alpha1Props): any { + return { + ...KubePriorityClassListV1Alpha1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.scheduling.v1alpha1.PriorityClassList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubePriorityClassListV1Alpha1Props) { + super(scope, id, KubePriorityClassListV1Alpha1.manifest(props)); + } +} + +/** + * DEPRECATED - This group version of PriorityClass is deprecated by scheduling.k8s.io/v1/PriorityClass. PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer. + * + * @schema io.k8s.api.scheduling.v1beta1.PriorityClass + */ +export class KubePriorityClassV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.scheduling.v1beta1.PriorityClass" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'scheduling.k8s.io/v1beta1', + kind: 'PriorityClass', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.scheduling.v1beta1.PriorityClass". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubePriorityClassV1Beta1Props): any { + return { + ...KubePriorityClassV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.scheduling.v1beta1.PriorityClass" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubePriorityClassV1Beta1Props) { + super(scope, id, KubePriorityClassV1Beta1.manifest(props)); + } +} + +/** + * PriorityClassList is a collection of priority classes. + * + * @schema io.k8s.api.scheduling.v1beta1.PriorityClassList + */ +export class KubePriorityClassListV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.scheduling.v1beta1.PriorityClassList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'scheduling.k8s.io/v1beta1', + kind: 'PriorityClassList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.scheduling.v1beta1.PriorityClassList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubePriorityClassListV1Beta1Props): any { + return { + ...KubePriorityClassListV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.scheduling.v1beta1.PriorityClassList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubePriorityClassListV1Beta1Props) { + super(scope, id, KubePriorityClassListV1Beta1.manifest(props)); + } +} + +/** + * PodPreset is a policy resource that defines additional runtime requirements for a Pod. + * + * @schema io.k8s.api.settings.v1alpha1.PodPreset + */ +export class KubePodPresetV1Alpha1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.settings.v1alpha1.PodPreset" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'settings.k8s.io/v1alpha1', + kind: 'PodPreset', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.settings.v1alpha1.PodPreset". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubePodPresetV1Alpha1Props = {}): any { + return { + ...KubePodPresetV1Alpha1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.settings.v1alpha1.PodPreset" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubePodPresetV1Alpha1Props = {}) { + super(scope, id, KubePodPresetV1Alpha1.manifest(props)); + } +} + +/** + * PodPresetList is a list of PodPreset objects. + * + * @schema io.k8s.api.settings.v1alpha1.PodPresetList + */ +export class KubePodPresetListV1Alpha1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.settings.v1alpha1.PodPresetList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'settings.k8s.io/v1alpha1', + kind: 'PodPresetList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.settings.v1alpha1.PodPresetList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubePodPresetListV1Alpha1Props): any { + return { + ...KubePodPresetListV1Alpha1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.settings.v1alpha1.PodPresetList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubePodPresetListV1Alpha1Props) { + super(scope, id, KubePodPresetListV1Alpha1.manifest(props)); + } +} + +/** + * StorageClass describes the parameters for a class of storage for which PersistentVolumes can be dynamically provisioned. + +StorageClasses are non-namespaced; the name of the storage class according to etcd is in ObjectMeta.Name. + * + * @schema io.k8s.api.storage.v1.StorageClass + */ +export class KubeStorageClass extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.storage.v1.StorageClass" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'storage.k8s.io/v1', + kind: 'StorageClass', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.storage.v1.StorageClass". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeStorageClassProps): any { + return { + ...KubeStorageClass.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.storage.v1.StorageClass" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeStorageClassProps) { + super(scope, id, KubeStorageClass.manifest(props)); + } +} + +/** + * StorageClassList is a collection of storage classes. + * + * @schema io.k8s.api.storage.v1.StorageClassList + */ +export class KubeStorageClassList extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.storage.v1.StorageClassList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'storage.k8s.io/v1', + kind: 'StorageClassList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.storage.v1.StorageClassList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeStorageClassListProps): any { + return { + ...KubeStorageClassList.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.storage.v1.StorageClassList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeStorageClassListProps) { + super(scope, id, KubeStorageClassList.manifest(props)); + } +} + +/** + * VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node. + +VolumeAttachment objects are non-namespaced. + * + * @schema io.k8s.api.storage.v1.VolumeAttachment + */ +export class KubeVolumeAttachment extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.storage.v1.VolumeAttachment" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'storage.k8s.io/v1', + kind: 'VolumeAttachment', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.storage.v1.VolumeAttachment". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeVolumeAttachmentProps): any { + return { + ...KubeVolumeAttachment.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.storage.v1.VolumeAttachment" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeVolumeAttachmentProps) { + super(scope, id, KubeVolumeAttachment.manifest(props)); + } +} + +/** + * VolumeAttachmentList is a collection of VolumeAttachment objects. + * + * @schema io.k8s.api.storage.v1.VolumeAttachmentList + */ +export class KubeVolumeAttachmentList extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.storage.v1.VolumeAttachmentList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'storage.k8s.io/v1', + kind: 'VolumeAttachmentList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.storage.v1.VolumeAttachmentList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeVolumeAttachmentListProps): any { + return { + ...KubeVolumeAttachmentList.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.storage.v1.VolumeAttachmentList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeVolumeAttachmentListProps) { + super(scope, id, KubeVolumeAttachmentList.manifest(props)); + } +} + +/** + * VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node. + +VolumeAttachment objects are non-namespaced. + * + * @schema io.k8s.api.storage.v1alpha1.VolumeAttachment + */ +export class KubeVolumeAttachmentV1Alpha1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.storage.v1alpha1.VolumeAttachment" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'storage.k8s.io/v1alpha1', + kind: 'VolumeAttachment', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.storage.v1alpha1.VolumeAttachment". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeVolumeAttachmentV1Alpha1Props): any { + return { + ...KubeVolumeAttachmentV1Alpha1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.storage.v1alpha1.VolumeAttachment" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeVolumeAttachmentV1Alpha1Props) { + super(scope, id, KubeVolumeAttachmentV1Alpha1.manifest(props)); + } +} + +/** + * VolumeAttachmentList is a collection of VolumeAttachment objects. + * + * @schema io.k8s.api.storage.v1alpha1.VolumeAttachmentList + */ +export class KubeVolumeAttachmentListV1Alpha1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.storage.v1alpha1.VolumeAttachmentList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'storage.k8s.io/v1alpha1', + kind: 'VolumeAttachmentList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.storage.v1alpha1.VolumeAttachmentList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeVolumeAttachmentListV1Alpha1Props): any { + return { + ...KubeVolumeAttachmentListV1Alpha1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.storage.v1alpha1.VolumeAttachmentList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeVolumeAttachmentListV1Alpha1Props) { + super(scope, id, KubeVolumeAttachmentListV1Alpha1.manifest(props)); + } +} + +/** + * CSIDriver captures information about a Container Storage Interface (CSI) volume driver deployed on the cluster. CSI drivers do not need to create the CSIDriver object directly. Instead they may use the cluster-driver-registrar sidecar container. When deployed with a CSI driver it automatically creates a CSIDriver object representing the driver. Kubernetes attach detach controller uses this object to determine whether attach is required. Kubelet uses this object to determine whether pod information needs to be passed on mount. CSIDriver objects are non-namespaced. + * + * @schema io.k8s.api.storage.v1beta1.CSIDriver + */ +export class KubeCsiDriverV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.storage.v1beta1.CSIDriver" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'storage.k8s.io/v1beta1', + kind: 'CSIDriver', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.storage.v1beta1.CSIDriver". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeCsiDriverV1Beta1Props): any { + return { + ...KubeCsiDriverV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.storage.v1beta1.CSIDriver" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeCsiDriverV1Beta1Props) { + super(scope, id, KubeCsiDriverV1Beta1.manifest(props)); + } +} + +/** + * CSIDriverList is a collection of CSIDriver objects. + * + * @schema io.k8s.api.storage.v1beta1.CSIDriverList + */ +export class KubeCsiDriverListV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.storage.v1beta1.CSIDriverList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'storage.k8s.io/v1beta1', + kind: 'CSIDriverList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.storage.v1beta1.CSIDriverList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeCsiDriverListV1Beta1Props): any { + return { + ...KubeCsiDriverListV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.storage.v1beta1.CSIDriverList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeCsiDriverListV1Beta1Props) { + super(scope, id, KubeCsiDriverListV1Beta1.manifest(props)); + } +} + +/** + * CSINode holds information about all CSI drivers installed on a node. CSI drivers do not need to create the CSINode object directly. As long as they use the node-driver-registrar sidecar container, the kubelet will automatically populate the CSINode object for the CSI driver as part of kubelet plugin registration. CSINode has the same name as a node. If the object is missing, it means either there are no CSI Drivers available on the node, or the Kubelet version is low enough that it doesn't create this object. CSINode has an OwnerReference that points to the corresponding node object. + * + * @schema io.k8s.api.storage.v1beta1.CSINode + */ +export class KubeCsiNodeV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.storage.v1beta1.CSINode" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'storage.k8s.io/v1beta1', + kind: 'CSINode', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.storage.v1beta1.CSINode". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeCsiNodeV1Beta1Props): any { + return { + ...KubeCsiNodeV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.storage.v1beta1.CSINode" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeCsiNodeV1Beta1Props) { + super(scope, id, KubeCsiNodeV1Beta1.manifest(props)); + } +} + +/** + * CSINodeList is a collection of CSINode objects. + * + * @schema io.k8s.api.storage.v1beta1.CSINodeList + */ +export class KubeCsiNodeListV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.storage.v1beta1.CSINodeList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'storage.k8s.io/v1beta1', + kind: 'CSINodeList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.storage.v1beta1.CSINodeList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeCsiNodeListV1Beta1Props): any { + return { + ...KubeCsiNodeListV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.storage.v1beta1.CSINodeList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeCsiNodeListV1Beta1Props) { + super(scope, id, KubeCsiNodeListV1Beta1.manifest(props)); + } +} + +/** + * StorageClass describes the parameters for a class of storage for which PersistentVolumes can be dynamically provisioned. + +StorageClasses are non-namespaced; the name of the storage class according to etcd is in ObjectMeta.Name. + * + * @schema io.k8s.api.storage.v1beta1.StorageClass + */ +export class KubeStorageClassV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.storage.v1beta1.StorageClass" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'storage.k8s.io/v1beta1', + kind: 'StorageClass', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.storage.v1beta1.StorageClass". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeStorageClassV1Beta1Props): any { + return { + ...KubeStorageClassV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.storage.v1beta1.StorageClass" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeStorageClassV1Beta1Props) { + super(scope, id, KubeStorageClassV1Beta1.manifest(props)); + } +} + +/** + * StorageClassList is a collection of storage classes. + * + * @schema io.k8s.api.storage.v1beta1.StorageClassList + */ +export class KubeStorageClassListV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.storage.v1beta1.StorageClassList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'storage.k8s.io/v1beta1', + kind: 'StorageClassList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.storage.v1beta1.StorageClassList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeStorageClassListV1Beta1Props): any { + return { + ...KubeStorageClassListV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.storage.v1beta1.StorageClassList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeStorageClassListV1Beta1Props) { + super(scope, id, KubeStorageClassListV1Beta1.manifest(props)); + } +} + +/** + * VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node. + +VolumeAttachment objects are non-namespaced. + * + * @schema io.k8s.api.storage.v1beta1.VolumeAttachment + */ +export class KubeVolumeAttachmentV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.storage.v1beta1.VolumeAttachment" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'storage.k8s.io/v1beta1', + kind: 'VolumeAttachment', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.storage.v1beta1.VolumeAttachment". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeVolumeAttachmentV1Beta1Props): any { + return { + ...KubeVolumeAttachmentV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.storage.v1beta1.VolumeAttachment" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeVolumeAttachmentV1Beta1Props) { + super(scope, id, KubeVolumeAttachmentV1Beta1.manifest(props)); + } +} + +/** + * VolumeAttachmentList is a collection of VolumeAttachment objects. + * + * @schema io.k8s.api.storage.v1beta1.VolumeAttachmentList + */ +export class KubeVolumeAttachmentListV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.api.storage.v1beta1.VolumeAttachmentList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'storage.k8s.io/v1beta1', + kind: 'VolumeAttachmentList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.api.storage.v1beta1.VolumeAttachmentList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeVolumeAttachmentListV1Beta1Props): any { + return { + ...KubeVolumeAttachmentListV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.api.storage.v1beta1.VolumeAttachmentList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeVolumeAttachmentListV1Beta1Props) { + super(scope, id, KubeVolumeAttachmentListV1Beta1.manifest(props)); + } +} + +/** + * CustomResourceDefinition represents a resource that should be exposed on the API server. Its name MUST be in the format <.spec.name>.<.spec.group>. + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition + */ +export class KubeCustomResourceDefinitionV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'apiextensions.k8s.io/v1beta1', + kind: 'CustomResourceDefinition', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeCustomResourceDefinitionV1Beta1Props): any { + return { + ...KubeCustomResourceDefinitionV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeCustomResourceDefinitionV1Beta1Props) { + super(scope, id, KubeCustomResourceDefinitionV1Beta1.manifest(props)); + } +} + +/** + * CustomResourceDefinitionList is a list of CustomResourceDefinition objects. + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionList + */ +export class KubeCustomResourceDefinitionListV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'apiextensions.k8s.io/v1beta1', + kind: 'CustomResourceDefinitionList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeCustomResourceDefinitionListV1Beta1Props): any { + return { + ...KubeCustomResourceDefinitionListV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeCustomResourceDefinitionListV1Beta1Props) { + super(scope, id, KubeCustomResourceDefinitionListV1Beta1.manifest(props)); + } +} + +/** + * Status is a return value for calls that don't return other objects. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.Status + */ +export class KubeStatus extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.apimachinery.pkg.apis.meta.v1.Status" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'v1', + kind: 'Status', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.apimachinery.pkg.apis.meta.v1.Status". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeStatusProps = {}): any { + return { + ...KubeStatus.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.apimachinery.pkg.apis.meta.v1.Status" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeStatusProps = {}) { + super(scope, id, KubeStatus.manifest(props)); + } +} + +/** + * APIService represents a server for a particular GroupVersion. Name must be "version.group". + * + * @schema io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService + */ +export class KubeApiService extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'apiregistration.k8s.io/v1', + kind: 'APIService', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeApiServiceProps = {}): any { + return { + ...KubeApiService.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeApiServiceProps = {}) { + super(scope, id, KubeApiService.manifest(props)); + } +} + +/** + * APIServiceList is a list of APIService objects. + * + * @schema io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceList + */ +export class KubeApiServiceList extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'apiregistration.k8s.io/v1', + kind: 'APIServiceList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeApiServiceListProps): any { + return { + ...KubeApiServiceList.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeApiServiceListProps) { + super(scope, id, KubeApiServiceList.manifest(props)); + } +} + +/** + * APIService represents a server for a particular GroupVersion. Name must be "version.group". + * + * @schema io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService + */ +export class KubeApiServiceV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'apiregistration.k8s.io/v1beta1', + kind: 'APIService', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeApiServiceV1Beta1Props = {}): any { + return { + ...KubeApiServiceV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeApiServiceV1Beta1Props = {}) { + super(scope, id, KubeApiServiceV1Beta1.manifest(props)); + } +} + +/** + * APIServiceList is a list of APIService objects. + * + * @schema io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceList + */ +export class KubeApiServiceListV1Beta1 extends ApiObject { + /** + * Returns the apiVersion and kind for "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceList" + */ + public static readonly GVK: GroupVersionKind = { + apiVersion: 'apiregistration.k8s.io/v1beta1', + kind: 'APIServiceList', + } + + /** + * Renders a Kubernetes manifest for "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceList". + * + * This can be used to inline resource manifests inside other objects (e.g. as templates). + * + * @param props initialization props + */ + public static manifest(props: KubeApiServiceListV1Beta1Props): any { + return { + ...KubeApiServiceListV1Beta1.GVK, + ...props, + }; + } + + /** + * Defines a "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceList" API object + * @param scope the scope in which to define this object + * @param id a scope-local name for the object + * @param props initialization props + */ + public constructor(scope: Construct, id: string, props: KubeApiServiceListV1Beta1Props) { + super(scope, id, KubeApiServiceListV1Beta1.manifest(props)); + } +} + +/** + * MutatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and may change the object. + * + * @schema io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration + */ +export interface KubeMutatingWebhookConfigurationV1Beta1Props { + /** + * Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata. + * + * @schema io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Webhooks is a list of webhooks and the affected resources and operations. + * + * @schema io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration#webhooks + */ + readonly webhooks?: MutatingWebhook[]; + +} + +/** + * MutatingWebhookConfigurationList is a list of MutatingWebhookConfiguration. + * + * @schema io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfigurationList + */ +export interface KubeMutatingWebhookConfigurationListV1Beta1Props { + /** + * List of MutatingWebhookConfiguration. + * + * @schema io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfigurationList#items + */ + readonly items: KubeMutatingWebhookConfigurationV1Beta1Props[]; + + /** + * Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds + * + * @schema io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfigurationList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * ValidatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and object without changing it. + * + * @schema io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration + */ +export interface KubeValidatingWebhookConfigurationV1Beta1Props { + /** + * Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata. + * + * @schema io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Webhooks is a list of webhooks and the affected resources and operations. + * + * @schema io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration#webhooks + */ + readonly webhooks?: ValidatingWebhook[]; + +} + +/** + * ValidatingWebhookConfigurationList is a list of ValidatingWebhookConfiguration. + * + * @schema io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfigurationList + */ +export interface KubeValidatingWebhookConfigurationListV1Beta1Props { + /** + * List of ValidatingWebhookConfiguration. + * + * @schema io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfigurationList#items + */ + readonly items: KubeValidatingWebhookConfigurationV1Beta1Props[]; + + /** + * Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds + * + * @schema io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfigurationList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers. + * + * @schema io.k8s.api.apps.v1.ControllerRevision + */ +export interface KubeControllerRevisionProps { + /** + * Data is the serialized representation of the state. + * + * @schema io.k8s.api.apps.v1.ControllerRevision#data + */ + readonly data?: RawExtension; + + /** + * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.apps.v1.ControllerRevision#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Revision indicates the revision of the state represented by Data. + * + * @schema io.k8s.api.apps.v1.ControllerRevision#revision + */ + readonly revision: number; + +} + +/** + * ControllerRevisionList is a resource containing a list of ControllerRevision objects. + * + * @schema io.k8s.api.apps.v1.ControllerRevisionList + */ +export interface KubeControllerRevisionListProps { + /** + * Items is the list of ControllerRevisions + * + * @schema io.k8s.api.apps.v1.ControllerRevisionList#items + */ + readonly items: KubeControllerRevisionProps[]; + + /** + * More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.apps.v1.ControllerRevisionList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * DaemonSet represents the configuration of a daemon set. + * + * @schema io.k8s.api.apps.v1.DaemonSet + */ +export interface KubeDaemonSetProps { + /** + * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.apps.v1.DaemonSet#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * The desired behavior of this daemon set. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status + * + * @schema io.k8s.api.apps.v1.DaemonSet#spec + */ + readonly spec?: DaemonSetSpec; + +} + +/** + * DaemonSetList is a collection of daemon sets. + * + * @schema io.k8s.api.apps.v1.DaemonSetList + */ +export interface KubeDaemonSetListProps { + /** + * A list of daemon sets. + * + * @schema io.k8s.api.apps.v1.DaemonSetList#items + */ + readonly items: KubeDaemonSetProps[]; + + /** + * Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.apps.v1.DaemonSetList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * Deployment enables declarative updates for Pods and ReplicaSets. + * + * @schema io.k8s.api.apps.v1.Deployment + */ +export interface KubeDeploymentProps { + /** + * Standard object metadata. + * + * @schema io.k8s.api.apps.v1.Deployment#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Specification of the desired behavior of the Deployment. + * + * @schema io.k8s.api.apps.v1.Deployment#spec + */ + readonly spec?: DeploymentSpec; + +} + +/** + * DeploymentList is a list of Deployments. + * + * @schema io.k8s.api.apps.v1.DeploymentList + */ +export interface KubeDeploymentListProps { + /** + * Items is the list of Deployments. + * + * @schema io.k8s.api.apps.v1.DeploymentList#items + */ + readonly items: KubeDeploymentProps[]; + + /** + * Standard list metadata. + * + * @schema io.k8s.api.apps.v1.DeploymentList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * ReplicaSet ensures that a specified number of pod replicas are running at any given time. + * + * @schema io.k8s.api.apps.v1.ReplicaSet + */ +export interface KubeReplicaSetProps { + /** + * If the Labels of a ReplicaSet are empty, they are defaulted to be the same as the Pod(s) that the ReplicaSet manages. Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.apps.v1.ReplicaSet#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Spec defines the specification of the desired behavior of the ReplicaSet. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status + * + * @schema io.k8s.api.apps.v1.ReplicaSet#spec + */ + readonly spec?: ReplicaSetSpec; + +} + +/** + * ReplicaSetList is a collection of ReplicaSets. + * + * @schema io.k8s.api.apps.v1.ReplicaSetList + */ +export interface KubeReplicaSetListProps { + /** + * List of ReplicaSets. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller + * + * @schema io.k8s.api.apps.v1.ReplicaSetList#items + */ + readonly items: KubeReplicaSetProps[]; + + /** + * Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds + * + * @schema io.k8s.api.apps.v1.ReplicaSetList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * StatefulSet represents a set of pods with consistent identities. Identities are defined as: + - Network: A single stable DNS and hostname. + - Storage: As many VolumeClaims as requested. +The StatefulSet guarantees that a given network identity will always map to the same storage identity. + * + * @schema io.k8s.api.apps.v1.StatefulSet + */ +export interface KubeStatefulSetProps { + /** + * @schema io.k8s.api.apps.v1.StatefulSet#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Spec defines the desired identities of pods in this set. + * + * @schema io.k8s.api.apps.v1.StatefulSet#spec + */ + readonly spec?: StatefulSetSpec; + +} + +/** + * StatefulSetList is a collection of StatefulSets. + * + * @schema io.k8s.api.apps.v1.StatefulSetList + */ +export interface KubeStatefulSetListProps { + /** + * @schema io.k8s.api.apps.v1.StatefulSetList#items + */ + readonly items: KubeStatefulSetProps[]; + + /** + * @schema io.k8s.api.apps.v1.StatefulSetList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * DEPRECATED - This group version of ControllerRevision is deprecated by apps/v1beta2/ControllerRevision. See the release notes for more information. ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers. + * + * @schema io.k8s.api.apps.v1beta1.ControllerRevision + */ +export interface KubeControllerRevisionV1Beta1Props { + /** + * Data is the serialized representation of the state. + * + * @schema io.k8s.api.apps.v1beta1.ControllerRevision#data + */ + readonly data?: RawExtension; + + /** + * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.apps.v1beta1.ControllerRevision#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Revision indicates the revision of the state represented by Data. + * + * @schema io.k8s.api.apps.v1beta1.ControllerRevision#revision + */ + readonly revision: number; + +} + +/** + * ControllerRevisionList is a resource containing a list of ControllerRevision objects. + * + * @schema io.k8s.api.apps.v1beta1.ControllerRevisionList + */ +export interface KubeControllerRevisionListV1Beta1Props { + /** + * Items is the list of ControllerRevisions + * + * @schema io.k8s.api.apps.v1beta1.ControllerRevisionList#items + */ + readonly items: KubeControllerRevisionV1Beta1Props[]; + + /** + * More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.apps.v1beta1.ControllerRevisionList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * DEPRECATED - This group version of Deployment is deprecated by apps/v1beta2/Deployment. See the release notes for more information. Deployment enables declarative updates for Pods and ReplicaSets. + * + * @schema io.k8s.api.extensions.v1beta1.Deployment + */ +export interface KubeDeploymentV1Beta1Props { + /** + * Standard object metadata. + * + * @schema io.k8s.api.extensions.v1beta1.Deployment#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Specification of the desired behavior of the Deployment. + * + * @schema io.k8s.api.extensions.v1beta1.Deployment#spec + */ + readonly spec?: DeploymentSpec; + +} + +/** + * DeploymentList is a list of Deployments. + * + * @schema io.k8s.api.extensions.v1beta1.DeploymentList + */ +export interface KubeDeploymentListV1Beta1Props { + /** + * Items is the list of Deployments. + * + * @schema io.k8s.api.extensions.v1beta1.DeploymentList#items + */ + readonly items: KubeDeploymentV1Beta1Props[]; + + /** + * Standard list metadata. + * + * @schema io.k8s.api.extensions.v1beta1.DeploymentList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * represents a scaling request for a resource. + * + * @schema io.k8s.api.extensions.v1beta1.Scale + */ +export interface KubeScaleV1Beta1Props { + /** + * Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata. + * + * @schema io.k8s.api.extensions.v1beta1.Scale#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status. + * + * @schema io.k8s.api.extensions.v1beta1.Scale#spec + */ + readonly spec?: ScaleSpec; + +} + +/** + * DEPRECATED - This group version of StatefulSet is deprecated by apps/v1beta2/StatefulSet. See the release notes for more information. StatefulSet represents a set of pods with consistent identities. Identities are defined as: + - Network: A single stable DNS and hostname. + - Storage: As many VolumeClaims as requested. +The StatefulSet guarantees that a given network identity will always map to the same storage identity. + * + * @schema io.k8s.api.apps.v1beta1.StatefulSet + */ +export interface KubeStatefulSetV1Beta1Props { + /** + * @schema io.k8s.api.apps.v1beta1.StatefulSet#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Spec defines the desired identities of pods in this set. + * + * @schema io.k8s.api.apps.v1beta1.StatefulSet#spec + */ + readonly spec?: StatefulSetSpec; + +} + +/** + * StatefulSetList is a collection of StatefulSets. + * + * @schema io.k8s.api.apps.v1beta1.StatefulSetList + */ +export interface KubeStatefulSetListV1Beta1Props { + /** + * @schema io.k8s.api.apps.v1beta1.StatefulSetList#items + */ + readonly items: KubeStatefulSetV1Beta1Props[]; + + /** + * @schema io.k8s.api.apps.v1beta1.StatefulSetList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * DEPRECATED - This group version of ControllerRevision is deprecated by apps/v1/ControllerRevision. See the release notes for more information. ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers. + * + * @schema io.k8s.api.apps.v1beta2.ControllerRevision + */ +export interface KubeControllerRevisionV1Beta2Props { + /** + * Data is the serialized representation of the state. + * + * @schema io.k8s.api.apps.v1beta2.ControllerRevision#data + */ + readonly data?: RawExtension; + + /** + * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata + * + * @schema io.k8s.api.apps.v1beta2.ControllerRevision#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Revision indicates the revision of the state represented by Data. + * + * @schema io.k8s.api.apps.v1beta2.ControllerRevision#revision + */ + readonly revision: number; + +} + +/** + * ControllerRevisionList is a resource containing a list of ControllerRevision objects. + * + * @schema io.k8s.api.apps.v1beta2.ControllerRevisionList + */ +export interface KubeControllerRevisionListV1Beta2Props { + /** + * Items is the list of ControllerRevisions + * + * @schema io.k8s.api.apps.v1beta2.ControllerRevisionList#items + */ + readonly items: KubeControllerRevisionV1Beta2Props[]; + + /** + * More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata + * + * @schema io.k8s.api.apps.v1beta2.ControllerRevisionList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * DEPRECATED - This group version of DaemonSet is deprecated by apps/v1/DaemonSet. See the release notes for more information. DaemonSet represents the configuration of a daemon set. + * + * @schema io.k8s.api.apps.v1beta2.DaemonSet + */ +export interface KubeDaemonSetV1Beta2Props { + /** + * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata + * + * @schema io.k8s.api.apps.v1beta2.DaemonSet#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * The desired behavior of this daemon set. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + * + * @schema io.k8s.api.apps.v1beta2.DaemonSet#spec + */ + readonly spec?: DaemonSetSpec; + +} + +/** + * DaemonSetList is a collection of daemon sets. + * + * @schema io.k8s.api.apps.v1beta2.DaemonSetList + */ +export interface KubeDaemonSetListV1Beta2Props { + /** + * A list of daemon sets. + * + * @schema io.k8s.api.apps.v1beta2.DaemonSetList#items + */ + readonly items: KubeDaemonSetV1Beta2Props[]; + + /** + * Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata + * + * @schema io.k8s.api.apps.v1beta2.DaemonSetList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * DEPRECATED - This group version of Deployment is deprecated by apps/v1/Deployment. See the release notes for more information. Deployment enables declarative updates for Pods and ReplicaSets. + * + * @schema io.k8s.api.apps.v1beta2.Deployment + */ +export interface KubeDeploymentV1Beta2Props { + /** + * Standard object metadata. + * + * @schema io.k8s.api.apps.v1beta2.Deployment#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Specification of the desired behavior of the Deployment. + * + * @schema io.k8s.api.apps.v1beta2.Deployment#spec + */ + readonly spec?: DeploymentSpec; + +} + +/** + * DeploymentList is a list of Deployments. + * + * @schema io.k8s.api.apps.v1beta2.DeploymentList + */ +export interface KubeDeploymentListV1Beta2Props { + /** + * Items is the list of Deployments. + * + * @schema io.k8s.api.apps.v1beta2.DeploymentList#items + */ + readonly items: KubeDeploymentV1Beta2Props[]; + + /** + * Standard list metadata. + * + * @schema io.k8s.api.apps.v1beta2.DeploymentList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * DEPRECATED - This group version of ReplicaSet is deprecated by apps/v1/ReplicaSet. See the release notes for more information. ReplicaSet ensures that a specified number of pod replicas are running at any given time. + * + * @schema io.k8s.api.apps.v1beta2.ReplicaSet + */ +export interface KubeReplicaSetV1Beta2Props { + /** + * If the Labels of a ReplicaSet are empty, they are defaulted to be the same as the Pod(s) that the ReplicaSet manages. Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata + * + * @schema io.k8s.api.apps.v1beta2.ReplicaSet#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Spec defines the specification of the desired behavior of the ReplicaSet. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + * + * @schema io.k8s.api.apps.v1beta2.ReplicaSet#spec + */ + readonly spec?: ReplicaSetSpec; + +} + +/** + * ReplicaSetList is a collection of ReplicaSets. + * + * @schema io.k8s.api.apps.v1beta2.ReplicaSetList + */ +export interface KubeReplicaSetListV1Beta2Props { + /** + * List of ReplicaSets. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller + * + * @schema io.k8s.api.apps.v1beta2.ReplicaSetList#items + */ + readonly items: KubeReplicaSetV1Beta2Props[]; + + /** + * Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds + * + * @schema io.k8s.api.apps.v1beta2.ReplicaSetList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * Scale represents a scaling request for a resource. + * + * @schema io.k8s.api.apps.v1beta2.Scale + */ +export interface KubeScaleV1Beta2Props { + /** + * Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata. + * + * @schema io.k8s.api.apps.v1beta2.Scale#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status. + * + * @schema io.k8s.api.apps.v1beta2.Scale#spec + */ + readonly spec?: ScaleSpec; + +} + +/** + * DEPRECATED - This group version of StatefulSet is deprecated by apps/v1/StatefulSet. See the release notes for more information. StatefulSet represents a set of pods with consistent identities. Identities are defined as: + - Network: A single stable DNS and hostname. + - Storage: As many VolumeClaims as requested. +The StatefulSet guarantees that a given network identity will always map to the same storage identity. + * + * @schema io.k8s.api.apps.v1beta2.StatefulSet + */ +export interface KubeStatefulSetV1Beta2Props { + /** + * @schema io.k8s.api.apps.v1beta2.StatefulSet#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Spec defines the desired identities of pods in this set. + * + * @schema io.k8s.api.apps.v1beta2.StatefulSet#spec + */ + readonly spec?: StatefulSetSpec; + +} + +/** + * StatefulSetList is a collection of StatefulSets. + * + * @schema io.k8s.api.apps.v1beta2.StatefulSetList + */ +export interface KubeStatefulSetListV1Beta2Props { + /** + * @schema io.k8s.api.apps.v1beta2.StatefulSetList#items + */ + readonly items: KubeStatefulSetV1Beta2Props[]; + + /** + * @schema io.k8s.api.apps.v1beta2.StatefulSetList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * AuditSink represents a cluster level audit sink + * + * @schema io.k8s.api.auditregistration.v1alpha1.AuditSink + */ +export interface KubeAuditSinkV1Alpha1Props { + /** + * @schema io.k8s.api.auditregistration.v1alpha1.AuditSink#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Spec defines the audit configuration spec + * + * @schema io.k8s.api.auditregistration.v1alpha1.AuditSink#spec + */ + readonly spec?: AuditSinkSpec; + +} + +/** + * AuditSinkList is a list of AuditSink items. + * + * @schema io.k8s.api.auditregistration.v1alpha1.AuditSinkList + */ +export interface KubeAuditSinkListV1Alpha1Props { + /** + * List of audit configurations. + * + * @schema io.k8s.api.auditregistration.v1alpha1.AuditSinkList#items + */ + readonly items: KubeAuditSinkV1Alpha1Props[]; + + /** + * @schema io.k8s.api.auditregistration.v1alpha1.AuditSinkList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * TokenReview attempts to authenticate a token to a known user. Note: TokenReview requests may be cached by the webhook token authenticator plugin in the kube-apiserver. + * + * @schema io.k8s.api.authentication.v1.TokenReview + */ +export interface KubeTokenReviewProps { + /** + * @schema io.k8s.api.authentication.v1.TokenReview#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Spec holds information about the request being evaluated + * + * @schema io.k8s.api.authentication.v1.TokenReview#spec + */ + readonly spec: TokenReviewSpec; + +} + +/** + * TokenReview attempts to authenticate a token to a known user. Note: TokenReview requests may be cached by the webhook token authenticator plugin in the kube-apiserver. + * + * @schema io.k8s.api.authentication.v1beta1.TokenReview + */ +export interface KubeTokenReviewV1Beta1Props { + /** + * @schema io.k8s.api.authentication.v1beta1.TokenReview#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Spec holds information about the request being evaluated + * + * @schema io.k8s.api.authentication.v1beta1.TokenReview#spec + */ + readonly spec: TokenReviewSpec; + +} + +/** + * LocalSubjectAccessReview checks whether or not a user or group can perform an action in a given namespace. Having a namespace scoped resource makes it much easier to grant namespace scoped policy that includes permissions checking. + * + * @schema io.k8s.api.authorization.v1.LocalSubjectAccessReview + */ +export interface KubeLocalSubjectAccessReviewProps { + /** + * @schema io.k8s.api.authorization.v1.LocalSubjectAccessReview#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Spec holds information about the request being evaluated. spec.namespace must be equal to the namespace you made the request against. If empty, it is defaulted. + * + * @schema io.k8s.api.authorization.v1.LocalSubjectAccessReview#spec + */ + readonly spec: SubjectAccessReviewSpec; + +} + +/** + * SelfSubjectAccessReview checks whether or the current user can perform an action. Not filling in a spec.namespace means "in all namespaces". Self is a special case, because users should always be able to check whether they can perform an action + * + * @schema io.k8s.api.authorization.v1.SelfSubjectAccessReview + */ +export interface KubeSelfSubjectAccessReviewProps { + /** + * @schema io.k8s.api.authorization.v1.SelfSubjectAccessReview#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Spec holds information about the request being evaluated. user and groups must be empty + * + * @schema io.k8s.api.authorization.v1.SelfSubjectAccessReview#spec + */ + readonly spec: SelfSubjectAccessReviewSpec; + +} + +/** + * SelfSubjectRulesReview enumerates the set of actions the current user can perform within a namespace. The returned list of actions may be incomplete depending on the server's authorization mode, and any errors experienced during the evaluation. SelfSubjectRulesReview should be used by UIs to show/hide actions, or to quickly let an end user reason about their permissions. It should NOT Be used by external systems to drive authorization decisions as this raises confused deputy, cache lifetime/revocation, and correctness concerns. SubjectAccessReview, and LocalAccessReview are the correct way to defer authorization decisions to the API server. + * + * @schema io.k8s.api.authorization.v1.SelfSubjectRulesReview + */ +export interface KubeSelfSubjectRulesReviewProps { + /** + * @schema io.k8s.api.authorization.v1.SelfSubjectRulesReview#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Spec holds information about the request being evaluated. + * + * @schema io.k8s.api.authorization.v1.SelfSubjectRulesReview#spec + */ + readonly spec: SelfSubjectRulesReviewSpec; + +} + +/** + * SubjectAccessReview checks whether or not a user or group can perform an action. + * + * @schema io.k8s.api.authorization.v1.SubjectAccessReview + */ +export interface KubeSubjectAccessReviewProps { + /** + * @schema io.k8s.api.authorization.v1.SubjectAccessReview#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Spec holds information about the request being evaluated + * + * @schema io.k8s.api.authorization.v1.SubjectAccessReview#spec + */ + readonly spec: SubjectAccessReviewSpec; + +} + +/** + * LocalSubjectAccessReview checks whether or not a user or group can perform an action in a given namespace. Having a namespace scoped resource makes it much easier to grant namespace scoped policy that includes permissions checking. + * + * @schema io.k8s.api.authorization.v1beta1.LocalSubjectAccessReview + */ +export interface KubeLocalSubjectAccessReviewV1Beta1Props { + /** + * @schema io.k8s.api.authorization.v1beta1.LocalSubjectAccessReview#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Spec holds information about the request being evaluated. spec.namespace must be equal to the namespace you made the request against. If empty, it is defaulted. + * + * @schema io.k8s.api.authorization.v1beta1.LocalSubjectAccessReview#spec + */ + readonly spec: SubjectAccessReviewSpec; + +} + +/** + * SelfSubjectAccessReview checks whether or the current user can perform an action. Not filling in a spec.namespace means "in all namespaces". Self is a special case, because users should always be able to check whether they can perform an action + * + * @schema io.k8s.api.authorization.v1beta1.SelfSubjectAccessReview + */ +export interface KubeSelfSubjectAccessReviewV1Beta1Props { + /** + * @schema io.k8s.api.authorization.v1beta1.SelfSubjectAccessReview#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Spec holds information about the request being evaluated. user and groups must be empty + * + * @schema io.k8s.api.authorization.v1beta1.SelfSubjectAccessReview#spec + */ + readonly spec: SelfSubjectAccessReviewSpec; + +} + +/** + * SelfSubjectRulesReview enumerates the set of actions the current user can perform within a namespace. The returned list of actions may be incomplete depending on the server's authorization mode, and any errors experienced during the evaluation. SelfSubjectRulesReview should be used by UIs to show/hide actions, or to quickly let an end user reason about their permissions. It should NOT Be used by external systems to drive authorization decisions as this raises confused deputy, cache lifetime/revocation, and correctness concerns. SubjectAccessReview, and LocalAccessReview are the correct way to defer authorization decisions to the API server. + * + * @schema io.k8s.api.authorization.v1beta1.SelfSubjectRulesReview + */ +export interface KubeSelfSubjectRulesReviewV1Beta1Props { + /** + * @schema io.k8s.api.authorization.v1beta1.SelfSubjectRulesReview#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Spec holds information about the request being evaluated. + * + * @schema io.k8s.api.authorization.v1beta1.SelfSubjectRulesReview#spec + */ + readonly spec: SelfSubjectRulesReviewSpec; + +} + +/** + * SubjectAccessReview checks whether or not a user or group can perform an action. + * + * @schema io.k8s.api.authorization.v1beta1.SubjectAccessReview + */ +export interface KubeSubjectAccessReviewV1Beta1Props { + /** + * @schema io.k8s.api.authorization.v1beta1.SubjectAccessReview#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Spec holds information about the request being evaluated + * + * @schema io.k8s.api.authorization.v1beta1.SubjectAccessReview#spec + */ + readonly spec: SubjectAccessReviewSpec; + +} + +/** + * configuration of a horizontal pod autoscaler. + * + * @schema io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler + */ +export interface KubeHorizontalPodAutoscalerProps { + /** + * Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * behaviour of autoscaler. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. + * + * @schema io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler#spec + */ + readonly spec?: HorizontalPodAutoscalerSpec; + +} + +/** + * list of horizontal pod autoscaler objects. + * + * @schema io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerList + */ +export interface KubeHorizontalPodAutoscalerListProps { + /** + * list of horizontal pod autoscaler objects. + * + * @schema io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerList#items + */ + readonly items: KubeHorizontalPodAutoscalerProps[]; + + /** + * Standard list metadata. + * + * @schema io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * Scale represents a scaling request for a resource. + * + * @schema io.k8s.api.autoscaling.v1.Scale + */ +export interface KubeScaleProps { + /** + * Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata. + * + * @schema io.k8s.api.autoscaling.v1.Scale#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. + * + * @schema io.k8s.api.autoscaling.v1.Scale#spec + */ + readonly spec?: ScaleSpec; + +} + +/** + * HorizontalPodAutoscaler is the configuration for a horizontal pod autoscaler, which automatically manages the replica count of any resource implementing the scale subresource based on the metrics specified. + * + * @schema io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler + */ +export interface KubeHorizontalPodAutoscalerV2Beta1Props { + /** + * metadata is the standard object metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * spec is the specification for the behaviour of the autoscaler. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. + * + * @schema io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler#spec + */ + readonly spec?: HorizontalPodAutoscalerSpec; + +} + +/** + * HorizontalPodAutoscaler is a list of horizontal pod autoscaler objects. + * + * @schema io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerList + */ +export interface KubeHorizontalPodAutoscalerListV2Beta1Props { + /** + * items is the list of horizontal pod autoscaler objects. + * + * @schema io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerList#items + */ + readonly items: KubeHorizontalPodAutoscalerV2Beta1Props[]; + + /** + * metadata is the standard list metadata. + * + * @schema io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * HorizontalPodAutoscaler is the configuration for a horizontal pod autoscaler, which automatically manages the replica count of any resource implementing the scale subresource based on the metrics specified. + * + * @schema io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler + */ +export interface KubeHorizontalPodAutoscalerV2Beta2Props { + /** + * metadata is the standard object metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * spec is the specification for the behaviour of the autoscaler. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. + * + * @schema io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler#spec + */ + readonly spec?: HorizontalPodAutoscalerSpec; + +} + +/** + * HorizontalPodAutoscalerList is a list of horizontal pod autoscaler objects. + * + * @schema io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerList + */ +export interface KubeHorizontalPodAutoscalerListV2Beta2Props { + /** + * items is the list of horizontal pod autoscaler objects. + * + * @schema io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerList#items + */ + readonly items: KubeHorizontalPodAutoscalerV2Beta2Props[]; + + /** + * metadata is the standard list metadata. + * + * @schema io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * Job represents the configuration of a single job. + * + * @schema io.k8s.api.batch.v1.Job + */ +export interface KubeJobProps { + /** + * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.batch.v1.Job#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Specification of the desired behavior of a job. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status + * + * @schema io.k8s.api.batch.v1.Job#spec + */ + readonly spec?: JobSpec; + +} + +/** + * JobList is a collection of jobs. + * + * @schema io.k8s.api.batch.v1.JobList + */ +export interface KubeJobListProps { + /** + * items is the list of Jobs. + * + * @schema io.k8s.api.batch.v1.JobList#items + */ + readonly items: KubeJobProps[]; + + /** + * Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.batch.v1.JobList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * CronJob represents the configuration of a single cron job. + * + * @schema io.k8s.api.batch.v1beta1.CronJob + */ +export interface KubeCronJobV1Beta1Props { + /** + * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.batch.v1beta1.CronJob#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Specification of the desired behavior of a cron job, including the schedule. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status + * + * @schema io.k8s.api.batch.v1beta1.CronJob#spec + */ + readonly spec?: CronJobSpec; + +} + +/** + * CronJobList is a collection of cron jobs. + * + * @schema io.k8s.api.batch.v1beta1.CronJobList + */ +export interface KubeCronJobListV1Beta1Props { + /** + * items is the list of CronJobs. + * + * @schema io.k8s.api.batch.v1beta1.CronJobList#items + */ + readonly items: KubeCronJobV1Beta1Props[]; + + /** + * Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.batch.v1beta1.CronJobList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * CronJob represents the configuration of a single cron job. + * + * @schema io.k8s.api.batch.v2alpha1.CronJob + */ +export interface KubeCronJobV2Alpha1Props { + /** + * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.batch.v2alpha1.CronJob#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Specification of the desired behavior of a cron job, including the schedule. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status + * + * @schema io.k8s.api.batch.v2alpha1.CronJob#spec + */ + readonly spec?: CronJobSpec; + +} + +/** + * CronJobList is a collection of cron jobs. + * + * @schema io.k8s.api.batch.v2alpha1.CronJobList + */ +export interface KubeCronJobListV2Alpha1Props { + /** + * items is the list of CronJobs. + * + * @schema io.k8s.api.batch.v2alpha1.CronJobList#items + */ + readonly items: KubeCronJobV2Alpha1Props[]; + + /** + * Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.batch.v2alpha1.CronJobList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * Describes a certificate signing request + * + * @schema io.k8s.api.certificates.v1beta1.CertificateSigningRequest + */ +export interface KubeCertificateSigningRequestV1Beta1Props { + /** + * @schema io.k8s.api.certificates.v1beta1.CertificateSigningRequest#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * The certificate request itself and any additional information. + * + * @schema io.k8s.api.certificates.v1beta1.CertificateSigningRequest#spec + */ + readonly spec?: CertificateSigningRequestSpec; + +} + +/** + * @schema io.k8s.api.certificates.v1beta1.CertificateSigningRequestList + */ +export interface KubeCertificateSigningRequestListV1Beta1Props { + /** + * @schema io.k8s.api.certificates.v1beta1.CertificateSigningRequestList#items + */ + readonly items: KubeCertificateSigningRequestV1Beta1Props[]; + + /** + * @schema io.k8s.api.certificates.v1beta1.CertificateSigningRequestList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * Lease defines a lease concept. + * + * @schema io.k8s.api.coordination.v1.Lease + */ +export interface KubeLeaseProps { + /** + * More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.coordination.v1.Lease#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Specification of the Lease. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status + * + * @schema io.k8s.api.coordination.v1.Lease#spec + */ + readonly spec?: LeaseSpec; + +} + +/** + * LeaseList is a list of Lease objects. + * + * @schema io.k8s.api.coordination.v1.LeaseList + */ +export interface KubeLeaseListProps { + /** + * Items is a list of schema objects. + * + * @schema io.k8s.api.coordination.v1.LeaseList#items + */ + readonly items: KubeLeaseProps[]; + + /** + * Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.coordination.v1.LeaseList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * Lease defines a lease concept. + * + * @schema io.k8s.api.coordination.v1beta1.Lease + */ +export interface KubeLeaseV1Beta1Props { + /** + * More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.coordination.v1beta1.Lease#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Specification of the Lease. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status + * + * @schema io.k8s.api.coordination.v1beta1.Lease#spec + */ + readonly spec?: LeaseSpec; + +} + +/** + * LeaseList is a list of Lease objects. + * + * @schema io.k8s.api.coordination.v1beta1.LeaseList + */ +export interface KubeLeaseListV1Beta1Props { + /** + * Items is a list of schema objects. + * + * @schema io.k8s.api.coordination.v1beta1.LeaseList#items + */ + readonly items: KubeLeaseV1Beta1Props[]; + + /** + * Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.coordination.v1beta1.LeaseList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * Binding ties one object to another; for example, a pod is bound to a node by a scheduler. Deprecated in 1.7, please use the bindings subresource of pods instead. + * + * @schema io.k8s.api.core.v1.Binding + */ +export interface KubeBindingProps { + /** + * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.core.v1.Binding#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * The target object that you want to bind to the standard object. + * + * @schema io.k8s.api.core.v1.Binding#target + */ + readonly target: ObjectReference; + +} + +/** + * ComponentStatus (and ComponentStatusList) holds the cluster validation info. + * + * @schema io.k8s.api.core.v1.ComponentStatus + */ +export interface KubeComponentStatusProps { + /** + * List of component conditions observed + * + * @schema io.k8s.api.core.v1.ComponentStatus#conditions + */ + readonly conditions?: ComponentCondition[]; + + /** + * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.core.v1.ComponentStatus#metadata + */ + readonly metadata?: ObjectMeta; + +} + +/** + * Status of all the conditions for the component as a list of ComponentStatus objects. + * + * @schema io.k8s.api.core.v1.ComponentStatusList + */ +export interface KubeComponentStatusListProps { + /** + * List of ComponentStatus objects. + * + * @schema io.k8s.api.core.v1.ComponentStatusList#items + */ + readonly items: KubeComponentStatusProps[]; + + /** + * Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds + * + * @schema io.k8s.api.core.v1.ComponentStatusList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * ConfigMap holds configuration data for pods to consume. + * + * @schema io.k8s.api.core.v1.ConfigMap + */ +export interface KubeConfigMapProps { + /** + * BinaryData contains the binary data. Each key must consist of alphanumeric characters, '-', '_' or '.'. BinaryData can contain byte sequences that are not in the UTF-8 range. The keys stored in BinaryData must not overlap with the ones in the Data field, this is enforced during validation process. Using this field will require 1.10+ apiserver and kubelet. + * + * @schema io.k8s.api.core.v1.ConfigMap#binaryData + */ + readonly binaryData?: { [key: string]: string }; + + /** + * Data contains the configuration data. Each key must consist of alphanumeric characters, '-', '_' or '.'. Values with non-UTF-8 byte sequences must use the BinaryData field. The keys stored in Data must not overlap with the keys in the BinaryData field, this is enforced during validation process. + * + * @schema io.k8s.api.core.v1.ConfigMap#data + */ + readonly data?: { [key: string]: string }; + + /** + * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.core.v1.ConfigMap#metadata + */ + readonly metadata?: ObjectMeta; + +} + +/** + * ConfigMapList is a resource containing a list of ConfigMap objects. + * + * @schema io.k8s.api.core.v1.ConfigMapList + */ +export interface KubeConfigMapListProps { + /** + * Items is the list of ConfigMaps. + * + * @schema io.k8s.api.core.v1.ConfigMapList#items + */ + readonly items: KubeConfigMapProps[]; + + /** + * More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.core.v1.ConfigMapList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * Endpoints is a collection of endpoints that implement the actual service. Example: + Name: "mysvc", + Subsets: [ + { + Addresses: [{"ip": "10.10.1.1"}, {"ip": "10.10.2.2"}], + Ports: [{"name": "a", "port": 8675}, {"name": "b", "port": 309}] + }, + { + Addresses: [{"ip": "10.10.3.3"}], + Ports: [{"name": "a", "port": 93}, {"name": "b", "port": 76}] + }, + ] + * + * @schema io.k8s.api.core.v1.Endpoints + */ +export interface KubeEndpointsProps { + /** + * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.core.v1.Endpoints#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * The set of all endpoints is the union of all subsets. Addresses are placed into subsets according to the IPs they share. A single address with multiple ports, some of which are ready and some of which are not (because they come from different containers) will result in the address being displayed in different subsets for the different ports. No address will appear in both Addresses and NotReadyAddresses in the same subset. Sets of addresses and ports that comprise a service. + * + * @schema io.k8s.api.core.v1.Endpoints#subsets + */ + readonly subsets?: EndpointSubset[]; + +} + +/** + * EndpointsList is a list of endpoints. + * + * @schema io.k8s.api.core.v1.EndpointsList + */ +export interface KubeEndpointsListProps { + /** + * List of endpoints. + * + * @schema io.k8s.api.core.v1.EndpointsList#items + */ + readonly items: KubeEndpointsProps[]; + + /** + * Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds + * + * @schema io.k8s.api.core.v1.EndpointsList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * Event is a report of an event somewhere in the cluster. + * + * @schema io.k8s.api.core.v1.Event + */ +export interface KubeEventProps { + /** + * What action was taken/failed regarding to the Regarding object. + * + * @schema io.k8s.api.core.v1.Event#action + */ + readonly action?: string; + + /** + * The number of times this event has occurred. + * + * @schema io.k8s.api.core.v1.Event#count + */ + readonly count?: number; + + /** + * Time when this Event was first observed. + * + * @schema io.k8s.api.core.v1.Event#eventTime + */ + readonly eventTime?: Date; + + /** + * The time at which the event was first recorded. (Time of server receipt is in TypeMeta.) + * + * @schema io.k8s.api.core.v1.Event#firstTimestamp + */ + readonly firstTimestamp?: Date; + + /** + * The object that this event is about. + * + * @schema io.k8s.api.core.v1.Event#involvedObject + */ + readonly involvedObject: ObjectReference; + + /** + * The time at which the most recent occurrence of this event was recorded. + * + * @schema io.k8s.api.core.v1.Event#lastTimestamp + */ + readonly lastTimestamp?: Date; + + /** + * A human-readable description of the status of this operation. + * + * @schema io.k8s.api.core.v1.Event#message + */ + readonly message?: string; + + /** + * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.core.v1.Event#metadata + */ + readonly metadata: ObjectMeta; + + /** + * This should be a short, machine understandable string that gives the reason for the transition into the object's current status. + * + * @schema io.k8s.api.core.v1.Event#reason + */ + readonly reason?: string; + + /** + * Optional secondary object for more complex actions. + * + * @schema io.k8s.api.core.v1.Event#related + */ + readonly related?: ObjectReference; + + /** + * Name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`. + * + * @schema io.k8s.api.core.v1.Event#reportingComponent + */ + readonly reportingComponent?: string; + + /** + * ID of the controller instance, e.g. `kubelet-xyzf`. + * + * @schema io.k8s.api.core.v1.Event#reportingInstance + */ + readonly reportingInstance?: string; + + /** + * Data about the Event series this event represents or nil if it's a singleton Event. + * + * @schema io.k8s.api.core.v1.Event#series + */ + readonly series?: EventSeries; + + /** + * The component reporting this event. Should be a short machine understandable string. + * + * @schema io.k8s.api.core.v1.Event#source + */ + readonly source?: EventSource; + + /** + * Type of this event (Normal, Warning), new types could be added in the future + * + * @schema io.k8s.api.core.v1.Event#type + */ + readonly type?: string; + +} + +/** + * EventList is a list of events. + * + * @schema io.k8s.api.core.v1.EventList + */ +export interface KubeEventListProps { + /** + * List of events + * + * @schema io.k8s.api.core.v1.EventList#items + */ + readonly items: KubeEventProps[]; + + /** + * Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds + * + * @schema io.k8s.api.core.v1.EventList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * LimitRange sets resource usage limits for each kind of resource in a Namespace. + * + * @schema io.k8s.api.core.v1.LimitRange + */ +export interface KubeLimitRangeProps { + /** + * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.core.v1.LimitRange#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Spec defines the limits enforced. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status + * + * @schema io.k8s.api.core.v1.LimitRange#spec + */ + readonly spec?: LimitRangeSpec; + +} + +/** + * LimitRangeList is a list of LimitRange items. + * + * @schema io.k8s.api.core.v1.LimitRangeList + */ +export interface KubeLimitRangeListProps { + /** + * Items is a list of LimitRange objects. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + * + * @schema io.k8s.api.core.v1.LimitRangeList#items + */ + readonly items: KubeLimitRangeProps[]; + + /** + * Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds + * + * @schema io.k8s.api.core.v1.LimitRangeList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * Namespace provides a scope for Names. Use of multiple namespaces is optional. + * + * @schema io.k8s.api.core.v1.Namespace + */ +export interface KubeNamespaceProps { + /** + * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.core.v1.Namespace#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Spec defines the behavior of the Namespace. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status + * + * @schema io.k8s.api.core.v1.Namespace#spec + */ + readonly spec?: NamespaceSpec; + +} + +/** + * NamespaceList is a list of Namespaces. + * + * @schema io.k8s.api.core.v1.NamespaceList + */ +export interface KubeNamespaceListProps { + /** + * Items is the list of Namespace objects in the list. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ + * + * @schema io.k8s.api.core.v1.NamespaceList#items + */ + readonly items: KubeNamespaceProps[]; + + /** + * Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds + * + * @schema io.k8s.api.core.v1.NamespaceList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * Node is a worker node in Kubernetes. Each node will have a unique identifier in the cache (i.e. in etcd). + * + * @schema io.k8s.api.core.v1.Node + */ +export interface KubeNodeProps { + /** + * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.core.v1.Node#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Spec defines the behavior of a node. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status + * + * @schema io.k8s.api.core.v1.Node#spec + */ + readonly spec?: NodeSpec; + +} + +/** + * NodeList is the whole list of all Nodes which have been registered with master. + * + * @schema io.k8s.api.core.v1.NodeList + */ +export interface KubeNodeListProps { + /** + * List of nodes + * + * @schema io.k8s.api.core.v1.NodeList#items + */ + readonly items: KubeNodeProps[]; + + /** + * Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds + * + * @schema io.k8s.api.core.v1.NodeList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * PersistentVolume (PV) is a storage resource provisioned by an administrator. It is analogous to a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes + * + * @schema io.k8s.api.core.v1.PersistentVolume + */ +export interface KubePersistentVolumeProps { + /** + * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.core.v1.PersistentVolume#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Spec defines a specification of a persistent volume owned by the cluster. Provisioned by an administrator. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistent-volumes + * + * @schema io.k8s.api.core.v1.PersistentVolume#spec + */ + readonly spec?: PersistentVolumeSpec; + +} + +/** + * PersistentVolumeClaim is a user's request for and claim to a persistent volume + * + * @schema io.k8s.api.core.v1.PersistentVolumeClaim + */ +export interface KubePersistentVolumeClaimProps { + /** + * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.core.v1.PersistentVolumeClaim#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Spec defines the desired characteristics of a volume requested by a pod author. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims + * + * @schema io.k8s.api.core.v1.PersistentVolumeClaim#spec + */ + readonly spec?: PersistentVolumeClaimSpec; + +} + +/** + * PersistentVolumeClaimList is a list of PersistentVolumeClaim items. + * + * @schema io.k8s.api.core.v1.PersistentVolumeClaimList + */ +export interface KubePersistentVolumeClaimListProps { + /** + * A list of persistent volume claims. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims + * + * @schema io.k8s.api.core.v1.PersistentVolumeClaimList#items + */ + readonly items: KubePersistentVolumeClaimProps[]; + + /** + * Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds + * + * @schema io.k8s.api.core.v1.PersistentVolumeClaimList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * PersistentVolumeList is a list of PersistentVolume items. + * + * @schema io.k8s.api.core.v1.PersistentVolumeList + */ +export interface KubePersistentVolumeListProps { + /** + * List of persistent volumes. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes + * + * @schema io.k8s.api.core.v1.PersistentVolumeList#items + */ + readonly items: KubePersistentVolumeProps[]; + + /** + * Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds + * + * @schema io.k8s.api.core.v1.PersistentVolumeList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * Pod is a collection of containers that can run on a host. This resource is created by clients and scheduled onto hosts. + * + * @schema io.k8s.api.core.v1.Pod + */ +export interface KubePodProps { + /** + * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.core.v1.Pod#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status + * + * @schema io.k8s.api.core.v1.Pod#spec + */ + readonly spec?: PodSpec; + +} + +/** + * PodList is a list of Pods. + * + * @schema io.k8s.api.core.v1.PodList + */ +export interface KubePodListProps { + /** + * List of pods. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md + * + * @schema io.k8s.api.core.v1.PodList#items + */ + readonly items: KubePodProps[]; + + /** + * Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds + * + * @schema io.k8s.api.core.v1.PodList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * PodTemplate describes a template for creating copies of a predefined pod. + * + * @schema io.k8s.api.core.v1.PodTemplate + */ +export interface KubePodTemplateProps { + /** + * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.core.v1.PodTemplate#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Template defines the pods that will be created from this pod template. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status + * + * @schema io.k8s.api.core.v1.PodTemplate#template + */ + readonly template?: PodTemplateSpec; + +} + +/** + * PodTemplateList is a list of PodTemplates. + * + * @schema io.k8s.api.core.v1.PodTemplateList + */ +export interface KubePodTemplateListProps { + /** + * List of pod templates + * + * @schema io.k8s.api.core.v1.PodTemplateList#items + */ + readonly items: KubePodTemplateProps[]; + + /** + * Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds + * + * @schema io.k8s.api.core.v1.PodTemplateList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * ReplicationController represents the configuration of a replication controller. + * + * @schema io.k8s.api.core.v1.ReplicationController + */ +export interface KubeReplicationControllerProps { + /** + * If the Labels of a ReplicationController are empty, they are defaulted to be the same as the Pod(s) that the replication controller manages. Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.core.v1.ReplicationController#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Spec defines the specification of the desired behavior of the replication controller. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status + * + * @schema io.k8s.api.core.v1.ReplicationController#spec + */ + readonly spec?: ReplicationControllerSpec; + +} + +/** + * ReplicationControllerList is a collection of replication controllers. + * + * @schema io.k8s.api.core.v1.ReplicationControllerList + */ +export interface KubeReplicationControllerListProps { + /** + * List of replication controllers. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller + * + * @schema io.k8s.api.core.v1.ReplicationControllerList#items + */ + readonly items: KubeReplicationControllerProps[]; + + /** + * Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds + * + * @schema io.k8s.api.core.v1.ReplicationControllerList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * ResourceQuota sets aggregate quota restrictions enforced per namespace + * + * @schema io.k8s.api.core.v1.ResourceQuota + */ +export interface KubeResourceQuotaProps { + /** + * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.core.v1.ResourceQuota#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Spec defines the desired quota. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status + * + * @schema io.k8s.api.core.v1.ResourceQuota#spec + */ + readonly spec?: ResourceQuotaSpec; + +} + +/** + * ResourceQuotaList is a list of ResourceQuota items. + * + * @schema io.k8s.api.core.v1.ResourceQuotaList + */ +export interface KubeResourceQuotaListProps { + /** + * Items is a list of ResourceQuota objects. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/ + * + * @schema io.k8s.api.core.v1.ResourceQuotaList#items + */ + readonly items: KubeResourceQuotaProps[]; + + /** + * Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds + * + * @schema io.k8s.api.core.v1.ResourceQuotaList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * Secret holds secret data of a certain type. The total bytes of the values in the Data field must be less than MaxSecretSize bytes. + * + * @schema io.k8s.api.core.v1.Secret + */ +export interface KubeSecretProps { + /** + * Data contains the secret data. Each key must consist of alphanumeric characters, '-', '_' or '.'. The serialized form of the secret data is a base64 encoded string, representing the arbitrary (possibly non-string) data value here. Described in https://tools.ietf.org/html/rfc4648#section-4 + * + * @schema io.k8s.api.core.v1.Secret#data + */ + readonly data?: { [key: string]: string }; + + /** + * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.core.v1.Secret#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * stringData allows specifying non-binary secret data in string form. It is provided as a write-only convenience method. All keys and values are merged into the data field on write, overwriting any existing values. It is never output when reading from the API. + * + * @schema io.k8s.api.core.v1.Secret#stringData + */ + readonly stringData?: { [key: string]: string }; + + /** + * Used to facilitate programmatic handling of secret data. + * + * @schema io.k8s.api.core.v1.Secret#type + */ + readonly type?: string; + +} + +/** + * SecretList is a list of Secret. + * + * @schema io.k8s.api.core.v1.SecretList + */ +export interface KubeSecretListProps { + /** + * Items is a list of secret objects. More info: https://kubernetes.io/docs/concepts/configuration/secret + * + * @schema io.k8s.api.core.v1.SecretList#items + */ + readonly items: KubeSecretProps[]; + + /** + * Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds + * + * @schema io.k8s.api.core.v1.SecretList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * Service is a named abstraction of software service (for example, mysql) consisting of local port (for example 3306) that the proxy listens on, and the selector that determines which pods will answer requests sent through the proxy. + * + * @schema io.k8s.api.core.v1.Service + */ +export interface KubeServiceProps { + /** + * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.core.v1.Service#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Spec defines the behavior of a service. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status + * + * @schema io.k8s.api.core.v1.Service#spec + */ + readonly spec?: ServiceSpec; + +} + +/** + * ServiceAccount binds together: * a name, understood by users, and perhaps by peripheral systems, for an identity * a principal that can be authenticated and authorized * a set of secrets + * + * @schema io.k8s.api.core.v1.ServiceAccount + */ +export interface KubeServiceAccountProps { + /** + * AutomountServiceAccountToken indicates whether pods running as this service account should have an API token automatically mounted. Can be overridden at the pod level. + * + * @schema io.k8s.api.core.v1.ServiceAccount#automountServiceAccountToken + */ + readonly automountServiceAccountToken?: boolean; + + /** + * ImagePullSecrets is a list of references to secrets in the same namespace to use for pulling any images in pods that reference this ServiceAccount. ImagePullSecrets are distinct from Secrets because Secrets can be mounted in the pod, but ImagePullSecrets are only accessed by the kubelet. More info: https://kubernetes.io/docs/concepts/containers/images/#specifying-imagepullsecrets-on-a-pod + * + * @schema io.k8s.api.core.v1.ServiceAccount#imagePullSecrets + */ + readonly imagePullSecrets?: LocalObjectReference[]; + + /** + * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.core.v1.ServiceAccount#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Secrets is the list of secrets allowed to be used by pods running using this ServiceAccount. More info: https://kubernetes.io/docs/concepts/configuration/secret + * + * @schema io.k8s.api.core.v1.ServiceAccount#secrets + */ + readonly secrets?: ObjectReference[]; + +} + +/** + * ServiceAccountList is a list of ServiceAccount objects + * + * @schema io.k8s.api.core.v1.ServiceAccountList + */ +export interface KubeServiceAccountListProps { + /** + * List of ServiceAccounts. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ + * + * @schema io.k8s.api.core.v1.ServiceAccountList#items + */ + readonly items: KubeServiceAccountProps[]; + + /** + * Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds + * + * @schema io.k8s.api.core.v1.ServiceAccountList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * ServiceList holds a list of services. + * + * @schema io.k8s.api.core.v1.ServiceList + */ +export interface KubeServiceListProps { + /** + * List of services + * + * @schema io.k8s.api.core.v1.ServiceList#items + */ + readonly items: KubeServiceProps[]; + + /** + * Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds + * + * @schema io.k8s.api.core.v1.ServiceList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * Event is a report of an event somewhere in the cluster. It generally denotes some state change in the system. + * + * @schema io.k8s.api.events.v1beta1.Event + */ +export interface KubeEventV1Beta1Props { + /** + * What action was taken/failed regarding to the regarding object. + * + * @schema io.k8s.api.events.v1beta1.Event#action + */ + readonly action?: string; + + /** + * Deprecated field assuring backward compatibility with core.v1 Event type + * + * @schema io.k8s.api.events.v1beta1.Event#deprecatedCount + */ + readonly deprecatedCount?: number; + + /** + * Deprecated field assuring backward compatibility with core.v1 Event type + * + * @schema io.k8s.api.events.v1beta1.Event#deprecatedFirstTimestamp + */ + readonly deprecatedFirstTimestamp?: Date; + + /** + * Deprecated field assuring backward compatibility with core.v1 Event type + * + * @schema io.k8s.api.events.v1beta1.Event#deprecatedLastTimestamp + */ + readonly deprecatedLastTimestamp?: Date; + + /** + * Deprecated field assuring backward compatibility with core.v1 Event type + * + * @schema io.k8s.api.events.v1beta1.Event#deprecatedSource + */ + readonly deprecatedSource?: EventSource; + + /** + * Required. Time when this Event was first observed. + * + * @schema io.k8s.api.events.v1beta1.Event#eventTime + */ + readonly eventTime: Date; + + /** + * @schema io.k8s.api.events.v1beta1.Event#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Optional. A human-readable description of the status of this operation. Maximal length of the note is 1kB, but libraries should be prepared to handle values up to 64kB. + * + * @schema io.k8s.api.events.v1beta1.Event#note + */ + readonly note?: string; + + /** + * Why the action was taken. + * + * @schema io.k8s.api.events.v1beta1.Event#reason + */ + readonly reason?: string; + + /** + * The object this Event is about. In most cases it's an Object reporting controller implements. E.g. ReplicaSetController implements ReplicaSets and this event is emitted because it acts on some changes in a ReplicaSet object. + * + * @schema io.k8s.api.events.v1beta1.Event#regarding + */ + readonly regarding?: ObjectReference; + + /** + * Optional secondary object for more complex actions. E.g. when regarding object triggers a creation or deletion of related object. + * + * @schema io.k8s.api.events.v1beta1.Event#related + */ + readonly related?: ObjectReference; + + /** + * Name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`. + * + * @schema io.k8s.api.events.v1beta1.Event#reportingController + */ + readonly reportingController?: string; + + /** + * ID of the controller instance, e.g. `kubelet-xyzf`. + * + * @schema io.k8s.api.events.v1beta1.Event#reportingInstance + */ + readonly reportingInstance?: string; + + /** + * Data about the Event series this event represents or nil if it's a singleton Event. + * + * @schema io.k8s.api.events.v1beta1.Event#series + */ + readonly series?: EventSeries; + + /** + * Type of this event (Normal, Warning), new types could be added in the future. + * + * @schema io.k8s.api.events.v1beta1.Event#type + */ + readonly type?: string; + +} + +/** + * EventList is a list of Event objects. + * + * @schema io.k8s.api.events.v1beta1.EventList + */ +export interface KubeEventListV1Beta1Props { + /** + * Items is a list of schema objects. + * + * @schema io.k8s.api.events.v1beta1.EventList#items + */ + readonly items: KubeEventV1Beta1Props[]; + + /** + * Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.events.v1beta1.EventList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * DEPRECATED - This group version of DaemonSet is deprecated by apps/v1beta2/DaemonSet. See the release notes for more information. DaemonSet represents the configuration of a daemon set. + * + * @schema io.k8s.api.extensions.v1beta1.DaemonSet + */ +export interface KubeDaemonSetV1Beta1Props { + /** + * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata + * + * @schema io.k8s.api.extensions.v1beta1.DaemonSet#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * The desired behavior of this daemon set. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + * + * @schema io.k8s.api.extensions.v1beta1.DaemonSet#spec + */ + readonly spec?: DaemonSetSpec; + +} + +/** + * DaemonSetList is a collection of daemon sets. + * + * @schema io.k8s.api.extensions.v1beta1.DaemonSetList + */ +export interface KubeDaemonSetListV1Beta1Props { + /** + * A list of daemon sets. + * + * @schema io.k8s.api.extensions.v1beta1.DaemonSetList#items + */ + readonly items: KubeDaemonSetV1Beta1Props[]; + + /** + * Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata + * + * @schema io.k8s.api.extensions.v1beta1.DaemonSetList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc. + * + * @schema io.k8s.api.networking.v1beta1.Ingress + */ +export interface KubeIngressV1Beta1Props { + /** + * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.networking.v1beta1.Ingress#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Spec is the desired state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status + * + * @schema io.k8s.api.networking.v1beta1.Ingress#spec + */ + readonly spec?: IngressSpec; + +} + +/** + * IngressList is a collection of Ingress. + * + * @schema io.k8s.api.networking.v1beta1.IngressList + */ +export interface KubeIngressListV1Beta1Props { + /** + * Items is the list of Ingress. + * + * @schema io.k8s.api.networking.v1beta1.IngressList#items + */ + readonly items: KubeIngressV1Beta1Props[]; + + /** + * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.networking.v1beta1.IngressList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * DEPRECATED 1.9 - This group version of NetworkPolicy is deprecated by networking/v1/NetworkPolicy. NetworkPolicy describes what network traffic is allowed for a set of Pods + * + * @schema io.k8s.api.extensions.v1beta1.NetworkPolicy + */ +export interface KubeNetworkPolicyV1Beta1Props { + /** + * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata + * + * @schema io.k8s.api.extensions.v1beta1.NetworkPolicy#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Specification of the desired behavior for this NetworkPolicy. + * + * @schema io.k8s.api.extensions.v1beta1.NetworkPolicy#spec + */ + readonly spec?: NetworkPolicySpec; + +} + +/** + * DEPRECATED 1.9 - This group version of NetworkPolicyList is deprecated by networking/v1/NetworkPolicyList. Network Policy List is a list of NetworkPolicy objects. + * + * @schema io.k8s.api.extensions.v1beta1.NetworkPolicyList + */ +export interface KubeNetworkPolicyListV1Beta1Props { + /** + * Items is a list of schema objects. + * + * @schema io.k8s.api.extensions.v1beta1.NetworkPolicyList#items + */ + readonly items: KubeNetworkPolicyV1Beta1Props[]; + + /** + * Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata + * + * @schema io.k8s.api.extensions.v1beta1.NetworkPolicyList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * PodSecurityPolicy governs the ability to make requests that affect the Security Context that will be applied to a pod and container. + * + * @schema io.k8s.api.policy.v1beta1.PodSecurityPolicy + */ +export interface KubePodSecurityPolicyV1Beta1Props { + /** + * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.policy.v1beta1.PodSecurityPolicy#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * spec defines the policy enforced. + * + * @schema io.k8s.api.policy.v1beta1.PodSecurityPolicy#spec + */ + readonly spec?: PodSecurityPolicySpec; + +} + +/** + * PodSecurityPolicyList is a list of PodSecurityPolicy objects. + * + * @schema io.k8s.api.policy.v1beta1.PodSecurityPolicyList + */ +export interface KubePodSecurityPolicyListV1Beta1Props { + /** + * items is a list of schema objects. + * + * @schema io.k8s.api.policy.v1beta1.PodSecurityPolicyList#items + */ + readonly items: KubePodSecurityPolicyV1Beta1Props[]; + + /** + * Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.policy.v1beta1.PodSecurityPolicyList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * DEPRECATED - This group version of ReplicaSet is deprecated by apps/v1beta2/ReplicaSet. See the release notes for more information. ReplicaSet ensures that a specified number of pod replicas are running at any given time. + * + * @schema io.k8s.api.extensions.v1beta1.ReplicaSet + */ +export interface KubeReplicaSetV1Beta1Props { + /** + * If the Labels of a ReplicaSet are empty, they are defaulted to be the same as the Pod(s) that the ReplicaSet manages. Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata + * + * @schema io.k8s.api.extensions.v1beta1.ReplicaSet#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Spec defines the specification of the desired behavior of the ReplicaSet. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + * + * @schema io.k8s.api.extensions.v1beta1.ReplicaSet#spec + */ + readonly spec?: ReplicaSetSpec; + +} + +/** + * ReplicaSetList is a collection of ReplicaSets. + * + * @schema io.k8s.api.extensions.v1beta1.ReplicaSetList + */ +export interface KubeReplicaSetListV1Beta1Props { + /** + * List of ReplicaSets. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller + * + * @schema io.k8s.api.extensions.v1beta1.ReplicaSetList#items + */ + readonly items: KubeReplicaSetV1Beta1Props[]; + + /** + * Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds + * + * @schema io.k8s.api.extensions.v1beta1.ReplicaSetList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * NetworkPolicy describes what network traffic is allowed for a set of Pods + * + * @schema io.k8s.api.networking.v1.NetworkPolicy + */ +export interface KubeNetworkPolicyProps { + /** + * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata + * + * @schema io.k8s.api.networking.v1.NetworkPolicy#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Specification of the desired behavior for this NetworkPolicy. + * + * @schema io.k8s.api.networking.v1.NetworkPolicy#spec + */ + readonly spec?: NetworkPolicySpec; + +} + +/** + * NetworkPolicyList is a list of NetworkPolicy objects. + * + * @schema io.k8s.api.networking.v1.NetworkPolicyList + */ +export interface KubeNetworkPolicyListProps { + /** + * Items is a list of schema objects. + * + * @schema io.k8s.api.networking.v1.NetworkPolicyList#items + */ + readonly items: KubeNetworkPolicyProps[]; + + /** + * Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata + * + * @schema io.k8s.api.networking.v1.NetworkPolicyList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * RuntimeClass defines a class of container runtime supported in the cluster. The RuntimeClass is used to determine which container runtime is used to run all containers in a pod. RuntimeClasses are (currently) manually defined by a user or cluster provisioner, and referenced in the PodSpec. The Kubelet is responsible for resolving the RuntimeClassName reference before running the pod. For more details, see https://git.k8s.io/enhancements/keps/sig-node/runtime-class.md + * + * @schema io.k8s.api.node.v1alpha1.RuntimeClass + */ +export interface KubeRuntimeClassV1Alpha1Props { + /** + * More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.node.v1alpha1.RuntimeClass#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Specification of the RuntimeClass More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status + * + * @schema io.k8s.api.node.v1alpha1.RuntimeClass#spec + */ + readonly spec: RuntimeClassSpec; + +} + +/** + * RuntimeClassList is a list of RuntimeClass objects. + * + * @schema io.k8s.api.node.v1alpha1.RuntimeClassList + */ +export interface KubeRuntimeClassListV1Alpha1Props { + /** + * Items is a list of schema objects. + * + * @schema io.k8s.api.node.v1alpha1.RuntimeClassList#items + */ + readonly items: KubeRuntimeClassV1Alpha1Props[]; + + /** + * Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.node.v1alpha1.RuntimeClassList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * RuntimeClass defines a class of container runtime supported in the cluster. The RuntimeClass is used to determine which container runtime is used to run all containers in a pod. RuntimeClasses are (currently) manually defined by a user or cluster provisioner, and referenced in the PodSpec. The Kubelet is responsible for resolving the RuntimeClassName reference before running the pod. For more details, see https://git.k8s.io/enhancements/keps/sig-node/runtime-class.md + * + * @schema io.k8s.api.node.v1beta1.RuntimeClass + */ +export interface KubeRuntimeClassV1Beta1Props { + /** + * Handler specifies the underlying runtime and configuration that the CRI implementation will use to handle pods of this class. The possible values are specific to the node & CRI configuration. It is assumed that all handlers are available on every node, and handlers of the same name are equivalent on every node. For example, a handler called "runc" might specify that the runc OCI runtime (using native Linux containers) will be used to run the containers in a pod. The Handler must conform to the DNS Label (RFC 1123) requirements, and is immutable. + * + * @schema io.k8s.api.node.v1beta1.RuntimeClass#handler + */ + readonly handler: string; + + /** + * More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.node.v1beta1.RuntimeClass#metadata + */ + readonly metadata?: ObjectMeta; + +} + +/** + * RuntimeClassList is a list of RuntimeClass objects. + * + * @schema io.k8s.api.node.v1beta1.RuntimeClassList + */ +export interface KubeRuntimeClassListV1Beta1Props { + /** + * Items is a list of schema objects. + * + * @schema io.k8s.api.node.v1beta1.RuntimeClassList#items + */ + readonly items: KubeRuntimeClassV1Beta1Props[]; + + /** + * Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.node.v1beta1.RuntimeClassList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * Eviction evicts a pod from its node subject to certain policies and safety constraints. This is a subresource of Pod. A request to cause such an eviction is created by POSTing to .../pods//evictions. + * + * @schema io.k8s.api.policy.v1beta1.Eviction + */ +export interface KubeEvictionV1Beta1Props { + /** + * DeleteOptions may be provided + * + * @schema io.k8s.api.policy.v1beta1.Eviction#deleteOptions + */ + readonly deleteOptions?: DeleteOptions; + + /** + * ObjectMeta describes the pod that is being evicted. + * + * @schema io.k8s.api.policy.v1beta1.Eviction#metadata + */ + readonly metadata?: ObjectMeta; + +} + +/** + * PodDisruptionBudget is an object to define the max disruption that can be caused to a collection of pods + * + * @schema io.k8s.api.policy.v1beta1.PodDisruptionBudget + */ +export interface KubePodDisruptionBudgetV1Beta1Props { + /** + * @schema io.k8s.api.policy.v1beta1.PodDisruptionBudget#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Specification of the desired behavior of the PodDisruptionBudget. + * + * @schema io.k8s.api.policy.v1beta1.PodDisruptionBudget#spec + */ + readonly spec?: PodDisruptionBudgetSpec; + +} + +/** + * PodDisruptionBudgetList is a collection of PodDisruptionBudgets. + * + * @schema io.k8s.api.policy.v1beta1.PodDisruptionBudgetList + */ +export interface KubePodDisruptionBudgetListV1Beta1Props { + /** + * @schema io.k8s.api.policy.v1beta1.PodDisruptionBudgetList#items + */ + readonly items: KubePodDisruptionBudgetV1Beta1Props[]; + + /** + * @schema io.k8s.api.policy.v1beta1.PodDisruptionBudgetList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding. + * + * @schema io.k8s.api.rbac.v1.ClusterRole + */ +export interface KubeClusterRoleProps { + /** + * AggregationRule is an optional field that describes how to build the Rules for this ClusterRole. If AggregationRule is set, then the Rules are controller managed and direct changes to Rules will be stomped by the controller. + * + * @schema io.k8s.api.rbac.v1.ClusterRole#aggregationRule + */ + readonly aggregationRule?: AggregationRule; + + /** + * Standard object's metadata. + * + * @schema io.k8s.api.rbac.v1.ClusterRole#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Rules holds all the PolicyRules for this ClusterRole + * + * @schema io.k8s.api.rbac.v1.ClusterRole#rules + */ + readonly rules?: PolicyRule[]; + +} + +/** + * ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject. + * + * @schema io.k8s.api.rbac.v1.ClusterRoleBinding + */ +export interface KubeClusterRoleBindingProps { + /** + * Standard object's metadata. + * + * @schema io.k8s.api.rbac.v1.ClusterRoleBinding#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error. + * + * @schema io.k8s.api.rbac.v1.ClusterRoleBinding#roleRef + */ + readonly roleRef: RoleRef; + + /** + * Subjects holds references to the objects the role applies to. + * + * @schema io.k8s.api.rbac.v1.ClusterRoleBinding#subjects + */ + readonly subjects?: Subject[]; + +} + +/** + * ClusterRoleBindingList is a collection of ClusterRoleBindings + * + * @schema io.k8s.api.rbac.v1.ClusterRoleBindingList + */ +export interface KubeClusterRoleBindingListProps { + /** + * Items is a list of ClusterRoleBindings + * + * @schema io.k8s.api.rbac.v1.ClusterRoleBindingList#items + */ + readonly items: KubeClusterRoleBindingProps[]; + + /** + * Standard object's metadata. + * + * @schema io.k8s.api.rbac.v1.ClusterRoleBindingList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * ClusterRoleList is a collection of ClusterRoles + * + * @schema io.k8s.api.rbac.v1.ClusterRoleList + */ +export interface KubeClusterRoleListProps { + /** + * Items is a list of ClusterRoles + * + * @schema io.k8s.api.rbac.v1.ClusterRoleList#items + */ + readonly items: KubeClusterRoleProps[]; + + /** + * Standard object's metadata. + * + * @schema io.k8s.api.rbac.v1.ClusterRoleList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding. + * + * @schema io.k8s.api.rbac.v1.Role + */ +export interface KubeRoleProps { + /** + * Standard object's metadata. + * + * @schema io.k8s.api.rbac.v1.Role#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Rules holds all the PolicyRules for this Role + * + * @schema io.k8s.api.rbac.v1.Role#rules + */ + readonly rules?: PolicyRule[]; + +} + +/** + * RoleBinding references a role, but does not contain it. It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in. RoleBindings in a given namespace only have effect in that namespace. + * + * @schema io.k8s.api.rbac.v1.RoleBinding + */ +export interface KubeRoleBindingProps { + /** + * Standard object's metadata. + * + * @schema io.k8s.api.rbac.v1.RoleBinding#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * RoleRef can reference a Role in the current namespace or a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error. + * + * @schema io.k8s.api.rbac.v1.RoleBinding#roleRef + */ + readonly roleRef: RoleRef; + + /** + * Subjects holds references to the objects the role applies to. + * + * @schema io.k8s.api.rbac.v1.RoleBinding#subjects + */ + readonly subjects?: Subject[]; + +} + +/** + * RoleBindingList is a collection of RoleBindings + * + * @schema io.k8s.api.rbac.v1.RoleBindingList + */ +export interface KubeRoleBindingListProps { + /** + * Items is a list of RoleBindings + * + * @schema io.k8s.api.rbac.v1.RoleBindingList#items + */ + readonly items: KubeRoleBindingProps[]; + + /** + * Standard object's metadata. + * + * @schema io.k8s.api.rbac.v1.RoleBindingList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * RoleList is a collection of Roles + * + * @schema io.k8s.api.rbac.v1.RoleList + */ +export interface KubeRoleListProps { + /** + * Items is a list of Roles + * + * @schema io.k8s.api.rbac.v1.RoleList#items + */ + readonly items: KubeRoleProps[]; + + /** + * Standard object's metadata. + * + * @schema io.k8s.api.rbac.v1.RoleList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding. + * + * @schema io.k8s.api.rbac.v1alpha1.ClusterRole + */ +export interface KubeClusterRoleV1Alpha1Props { + /** + * AggregationRule is an optional field that describes how to build the Rules for this ClusterRole. If AggregationRule is set, then the Rules are controller managed and direct changes to Rules will be stomped by the controller. + * + * @schema io.k8s.api.rbac.v1alpha1.ClusterRole#aggregationRule + */ + readonly aggregationRule?: AggregationRule; + + /** + * Standard object's metadata. + * + * @schema io.k8s.api.rbac.v1alpha1.ClusterRole#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Rules holds all the PolicyRules for this ClusterRole + * + * @schema io.k8s.api.rbac.v1alpha1.ClusterRole#rules + */ + readonly rules?: PolicyRule[]; + +} + +/** + * ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject. + * + * @schema io.k8s.api.rbac.v1alpha1.ClusterRoleBinding + */ +export interface KubeClusterRoleBindingV1Alpha1Props { + /** + * Standard object's metadata. + * + * @schema io.k8s.api.rbac.v1alpha1.ClusterRoleBinding#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error. + * + * @schema io.k8s.api.rbac.v1alpha1.ClusterRoleBinding#roleRef + */ + readonly roleRef: RoleRef; + + /** + * Subjects holds references to the objects the role applies to. + * + * @schema io.k8s.api.rbac.v1alpha1.ClusterRoleBinding#subjects + */ + readonly subjects?: Subject[]; + +} + +/** + * ClusterRoleBindingList is a collection of ClusterRoleBindings + * + * @schema io.k8s.api.rbac.v1alpha1.ClusterRoleBindingList + */ +export interface KubeClusterRoleBindingListV1Alpha1Props { + /** + * Items is a list of ClusterRoleBindings + * + * @schema io.k8s.api.rbac.v1alpha1.ClusterRoleBindingList#items + */ + readonly items: KubeClusterRoleBindingV1Alpha1Props[]; + + /** + * Standard object's metadata. + * + * @schema io.k8s.api.rbac.v1alpha1.ClusterRoleBindingList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * ClusterRoleList is a collection of ClusterRoles + * + * @schema io.k8s.api.rbac.v1alpha1.ClusterRoleList + */ +export interface KubeClusterRoleListV1Alpha1Props { + /** + * Items is a list of ClusterRoles + * + * @schema io.k8s.api.rbac.v1alpha1.ClusterRoleList#items + */ + readonly items: KubeClusterRoleV1Alpha1Props[]; + + /** + * Standard object's metadata. + * + * @schema io.k8s.api.rbac.v1alpha1.ClusterRoleList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding. + * + * @schema io.k8s.api.rbac.v1alpha1.Role + */ +export interface KubeRoleV1Alpha1Props { + /** + * Standard object's metadata. + * + * @schema io.k8s.api.rbac.v1alpha1.Role#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Rules holds all the PolicyRules for this Role + * + * @schema io.k8s.api.rbac.v1alpha1.Role#rules + */ + readonly rules?: PolicyRule[]; + +} + +/** + * RoleBinding references a role, but does not contain it. It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in. RoleBindings in a given namespace only have effect in that namespace. + * + * @schema io.k8s.api.rbac.v1alpha1.RoleBinding + */ +export interface KubeRoleBindingV1Alpha1Props { + /** + * Standard object's metadata. + * + * @schema io.k8s.api.rbac.v1alpha1.RoleBinding#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * RoleRef can reference a Role in the current namespace or a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error. + * + * @schema io.k8s.api.rbac.v1alpha1.RoleBinding#roleRef + */ + readonly roleRef: RoleRef; + + /** + * Subjects holds references to the objects the role applies to. + * + * @schema io.k8s.api.rbac.v1alpha1.RoleBinding#subjects + */ + readonly subjects?: Subject[]; + +} + +/** + * RoleBindingList is a collection of RoleBindings + * + * @schema io.k8s.api.rbac.v1alpha1.RoleBindingList + */ +export interface KubeRoleBindingListV1Alpha1Props { + /** + * Items is a list of RoleBindings + * + * @schema io.k8s.api.rbac.v1alpha1.RoleBindingList#items + */ + readonly items: KubeRoleBindingV1Alpha1Props[]; + + /** + * Standard object's metadata. + * + * @schema io.k8s.api.rbac.v1alpha1.RoleBindingList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * RoleList is a collection of Roles + * + * @schema io.k8s.api.rbac.v1alpha1.RoleList + */ +export interface KubeRoleListV1Alpha1Props { + /** + * Items is a list of Roles + * + * @schema io.k8s.api.rbac.v1alpha1.RoleList#items + */ + readonly items: KubeRoleV1Alpha1Props[]; + + /** + * Standard object's metadata. + * + * @schema io.k8s.api.rbac.v1alpha1.RoleList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding. + * + * @schema io.k8s.api.rbac.v1beta1.ClusterRole + */ +export interface KubeClusterRoleV1Beta1Props { + /** + * AggregationRule is an optional field that describes how to build the Rules for this ClusterRole. If AggregationRule is set, then the Rules are controller managed and direct changes to Rules will be stomped by the controller. + * + * @schema io.k8s.api.rbac.v1beta1.ClusterRole#aggregationRule + */ + readonly aggregationRule?: AggregationRule; + + /** + * Standard object's metadata. + * + * @schema io.k8s.api.rbac.v1beta1.ClusterRole#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Rules holds all the PolicyRules for this ClusterRole + * + * @schema io.k8s.api.rbac.v1beta1.ClusterRole#rules + */ + readonly rules?: PolicyRule[]; + +} + +/** + * ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject. + * + * @schema io.k8s.api.rbac.v1beta1.ClusterRoleBinding + */ +export interface KubeClusterRoleBindingV1Beta1Props { + /** + * Standard object's metadata. + * + * @schema io.k8s.api.rbac.v1beta1.ClusterRoleBinding#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error. + * + * @schema io.k8s.api.rbac.v1beta1.ClusterRoleBinding#roleRef + */ + readonly roleRef: RoleRef; + + /** + * Subjects holds references to the objects the role applies to. + * + * @schema io.k8s.api.rbac.v1beta1.ClusterRoleBinding#subjects + */ + readonly subjects?: Subject[]; + +} + +/** + * ClusterRoleBindingList is a collection of ClusterRoleBindings + * + * @schema io.k8s.api.rbac.v1beta1.ClusterRoleBindingList + */ +export interface KubeClusterRoleBindingListV1Beta1Props { + /** + * Items is a list of ClusterRoleBindings + * + * @schema io.k8s.api.rbac.v1beta1.ClusterRoleBindingList#items + */ + readonly items: KubeClusterRoleBindingV1Beta1Props[]; + + /** + * Standard object's metadata. + * + * @schema io.k8s.api.rbac.v1beta1.ClusterRoleBindingList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * ClusterRoleList is a collection of ClusterRoles + * + * @schema io.k8s.api.rbac.v1beta1.ClusterRoleList + */ +export interface KubeClusterRoleListV1Beta1Props { + /** + * Items is a list of ClusterRoles + * + * @schema io.k8s.api.rbac.v1beta1.ClusterRoleList#items + */ + readonly items: KubeClusterRoleV1Beta1Props[]; + + /** + * Standard object's metadata. + * + * @schema io.k8s.api.rbac.v1beta1.ClusterRoleList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding. + * + * @schema io.k8s.api.rbac.v1beta1.Role + */ +export interface KubeRoleV1Beta1Props { + /** + * Standard object's metadata. + * + * @schema io.k8s.api.rbac.v1beta1.Role#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Rules holds all the PolicyRules for this Role + * + * @schema io.k8s.api.rbac.v1beta1.Role#rules + */ + readonly rules?: PolicyRule[]; + +} + +/** + * RoleBinding references a role, but does not contain it. It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in. RoleBindings in a given namespace only have effect in that namespace. + * + * @schema io.k8s.api.rbac.v1beta1.RoleBinding + */ +export interface KubeRoleBindingV1Beta1Props { + /** + * Standard object's metadata. + * + * @schema io.k8s.api.rbac.v1beta1.RoleBinding#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * RoleRef can reference a Role in the current namespace or a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error. + * + * @schema io.k8s.api.rbac.v1beta1.RoleBinding#roleRef + */ + readonly roleRef: RoleRef; + + /** + * Subjects holds references to the objects the role applies to. + * + * @schema io.k8s.api.rbac.v1beta1.RoleBinding#subjects + */ + readonly subjects?: Subject[]; + +} + +/** + * RoleBindingList is a collection of RoleBindings + * + * @schema io.k8s.api.rbac.v1beta1.RoleBindingList + */ +export interface KubeRoleBindingListV1Beta1Props { + /** + * Items is a list of RoleBindings + * + * @schema io.k8s.api.rbac.v1beta1.RoleBindingList#items + */ + readonly items: KubeRoleBindingV1Beta1Props[]; + + /** + * Standard object's metadata. + * + * @schema io.k8s.api.rbac.v1beta1.RoleBindingList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * RoleList is a collection of Roles + * + * @schema io.k8s.api.rbac.v1beta1.RoleList + */ +export interface KubeRoleListV1Beta1Props { + /** + * Items is a list of Roles + * + * @schema io.k8s.api.rbac.v1beta1.RoleList#items + */ + readonly items: KubeRoleV1Beta1Props[]; + + /** + * Standard object's metadata. + * + * @schema io.k8s.api.rbac.v1beta1.RoleList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer. + * + * @schema io.k8s.api.scheduling.v1.PriorityClass + */ +export interface KubePriorityClassProps { + /** + * description is an arbitrary string that usually provides guidelines on when this priority class should be used. + * + * @schema io.k8s.api.scheduling.v1.PriorityClass#description + */ + readonly description?: string; + + /** + * globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class. Only one PriorityClass can be marked as `globalDefault`. However, if more than one PriorityClasses exists with their `globalDefault` field set to true, the smallest value of such global default PriorityClasses will be used as the default priority. + * + * @schema io.k8s.api.scheduling.v1.PriorityClass#globalDefault + */ + readonly globalDefault?: boolean; + + /** + * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.scheduling.v1.PriorityClass#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is alpha-level and is only honored by servers that enable the NonPreemptingPriority feature. + * + * @default PreemptLowerPriority if unset. This field is alpha-level and is only honored by servers that enable the NonPreemptingPriority feature. + * @schema io.k8s.api.scheduling.v1.PriorityClass#preemptionPolicy + */ + readonly preemptionPolicy?: string; + + /** + * The value of this priority class. This is the actual priority that pods receive when they have the name of this class in their pod spec. + * + * @schema io.k8s.api.scheduling.v1.PriorityClass#value + */ + readonly value: number; + +} + +/** + * PriorityClassList is a collection of priority classes. + * + * @schema io.k8s.api.scheduling.v1.PriorityClassList + */ +export interface KubePriorityClassListProps { + /** + * items is the list of PriorityClasses + * + * @schema io.k8s.api.scheduling.v1.PriorityClassList#items + */ + readonly items: KubePriorityClassProps[]; + + /** + * Standard list metadata More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.scheduling.v1.PriorityClassList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * DEPRECATED - This group version of PriorityClass is deprecated by scheduling.k8s.io/v1/PriorityClass. PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer. + * + * @schema io.k8s.api.scheduling.v1alpha1.PriorityClass + */ +export interface KubePriorityClassV1Alpha1Props { + /** + * description is an arbitrary string that usually provides guidelines on when this priority class should be used. + * + * @schema io.k8s.api.scheduling.v1alpha1.PriorityClass#description + */ + readonly description?: string; + + /** + * globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class. Only one PriorityClass can be marked as `globalDefault`. However, if more than one PriorityClasses exists with their `globalDefault` field set to true, the smallest value of such global default PriorityClasses will be used as the default priority. + * + * @schema io.k8s.api.scheduling.v1alpha1.PriorityClass#globalDefault + */ + readonly globalDefault?: boolean; + + /** + * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.scheduling.v1alpha1.PriorityClass#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is alpha-level and is only honored by servers that enable the NonPreemptingPriority feature. + * + * @default PreemptLowerPriority if unset. This field is alpha-level and is only honored by servers that enable the NonPreemptingPriority feature. + * @schema io.k8s.api.scheduling.v1alpha1.PriorityClass#preemptionPolicy + */ + readonly preemptionPolicy?: string; + + /** + * The value of this priority class. This is the actual priority that pods receive when they have the name of this class in their pod spec. + * + * @schema io.k8s.api.scheduling.v1alpha1.PriorityClass#value + */ + readonly value: number; + +} + +/** + * PriorityClassList is a collection of priority classes. + * + * @schema io.k8s.api.scheduling.v1alpha1.PriorityClassList + */ +export interface KubePriorityClassListV1Alpha1Props { + /** + * items is the list of PriorityClasses + * + * @schema io.k8s.api.scheduling.v1alpha1.PriorityClassList#items + */ + readonly items: KubePriorityClassV1Alpha1Props[]; + + /** + * Standard list metadata More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.scheduling.v1alpha1.PriorityClassList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * DEPRECATED - This group version of PriorityClass is deprecated by scheduling.k8s.io/v1/PriorityClass. PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer. + * + * @schema io.k8s.api.scheduling.v1beta1.PriorityClass + */ +export interface KubePriorityClassV1Beta1Props { + /** + * description is an arbitrary string that usually provides guidelines on when this priority class should be used. + * + * @schema io.k8s.api.scheduling.v1beta1.PriorityClass#description + */ + readonly description?: string; + + /** + * globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class. Only one PriorityClass can be marked as `globalDefault`. However, if more than one PriorityClasses exists with their `globalDefault` field set to true, the smallest value of such global default PriorityClasses will be used as the default priority. + * + * @schema io.k8s.api.scheduling.v1beta1.PriorityClass#globalDefault + */ + readonly globalDefault?: boolean; + + /** + * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata + * + * @schema io.k8s.api.scheduling.v1beta1.PriorityClass#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is alpha-level and is only honored by servers that enable the NonPreemptingPriority feature. + * + * @default PreemptLowerPriority if unset. This field is alpha-level and is only honored by servers that enable the NonPreemptingPriority feature. + * @schema io.k8s.api.scheduling.v1beta1.PriorityClass#preemptionPolicy + */ + readonly preemptionPolicy?: string; + + /** + * The value of this priority class. This is the actual priority that pods receive when they have the name of this class in their pod spec. + * + * @schema io.k8s.api.scheduling.v1beta1.PriorityClass#value + */ + readonly value: number; + +} + +/** + * PriorityClassList is a collection of priority classes. + * + * @schema io.k8s.api.scheduling.v1beta1.PriorityClassList + */ +export interface KubePriorityClassListV1Beta1Props { + /** + * items is the list of PriorityClasses + * + * @schema io.k8s.api.scheduling.v1beta1.PriorityClassList#items + */ + readonly items: KubePriorityClassV1Beta1Props[]; + + /** + * Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata + * + * @schema io.k8s.api.scheduling.v1beta1.PriorityClassList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * PodPreset is a policy resource that defines additional runtime requirements for a Pod. + * + * @schema io.k8s.api.settings.v1alpha1.PodPreset + */ +export interface KubePodPresetV1Alpha1Props { + /** + * @schema io.k8s.api.settings.v1alpha1.PodPreset#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * @schema io.k8s.api.settings.v1alpha1.PodPreset#spec + */ + readonly spec?: PodPresetSpec; + +} + +/** + * PodPresetList is a list of PodPreset objects. + * + * @schema io.k8s.api.settings.v1alpha1.PodPresetList + */ +export interface KubePodPresetListV1Alpha1Props { + /** + * Items is a list of schema objects. + * + * @schema io.k8s.api.settings.v1alpha1.PodPresetList#items + */ + readonly items: KubePodPresetV1Alpha1Props[]; + + /** + * Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata + * + * @schema io.k8s.api.settings.v1alpha1.PodPresetList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * StorageClass describes the parameters for a class of storage for which PersistentVolumes can be dynamically provisioned. + +StorageClasses are non-namespaced; the name of the storage class according to etcd is in ObjectMeta.Name. + * + * @schema io.k8s.api.storage.v1.StorageClass + */ +export interface KubeStorageClassProps { + /** + * AllowVolumeExpansion shows whether the storage class allow volume expand + * + * @schema io.k8s.api.storage.v1.StorageClass#allowVolumeExpansion + */ + readonly allowVolumeExpansion?: boolean; + + /** + * Restrict the node topologies where volumes can be dynamically provisioned. Each volume plugin defines its own supported topology specifications. An empty TopologySelectorTerm list means there is no topology restriction. This field is only honored by servers that enable the VolumeScheduling feature. + * + * @schema io.k8s.api.storage.v1.StorageClass#allowedTopologies + */ + readonly allowedTopologies?: TopologySelectorTerm[]; + + /** + * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.storage.v1.StorageClass#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Dynamically provisioned PersistentVolumes of this storage class are created with these mountOptions, e.g. ["ro", "soft"]. Not validated - mount of the PVs will simply fail if one is invalid. + * + * @schema io.k8s.api.storage.v1.StorageClass#mountOptions + */ + readonly mountOptions?: string[]; + + /** + * Parameters holds the parameters for the provisioner that should create volumes of this storage class. + * + * @schema io.k8s.api.storage.v1.StorageClass#parameters + */ + readonly parameters?: { [key: string]: string }; + + /** + * Provisioner indicates the type of the provisioner. + * + * @schema io.k8s.api.storage.v1.StorageClass#provisioner + */ + readonly provisioner: string; + + /** + * Dynamically provisioned PersistentVolumes of this storage class are created with this reclaimPolicy. Defaults to Delete. + * + * @default Delete. + * @schema io.k8s.api.storage.v1.StorageClass#reclaimPolicy + */ + readonly reclaimPolicy?: string; + + /** + * VolumeBindingMode indicates how PersistentVolumeClaims should be provisioned and bound. When unset, VolumeBindingImmediate is used. This field is only honored by servers that enable the VolumeScheduling feature. + * + * @schema io.k8s.api.storage.v1.StorageClass#volumeBindingMode + */ + readonly volumeBindingMode?: string; + +} + +/** + * StorageClassList is a collection of storage classes. + * + * @schema io.k8s.api.storage.v1.StorageClassList + */ +export interface KubeStorageClassListProps { + /** + * Items is the list of StorageClasses + * + * @schema io.k8s.api.storage.v1.StorageClassList#items + */ + readonly items: KubeStorageClassProps[]; + + /** + * Standard list metadata More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.storage.v1.StorageClassList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node. + +VolumeAttachment objects are non-namespaced. + * + * @schema io.k8s.api.storage.v1.VolumeAttachment + */ +export interface KubeVolumeAttachmentProps { + /** + * Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.storage.v1.VolumeAttachment#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Specification of the desired attach/detach volume behavior. Populated by the Kubernetes system. + * + * @schema io.k8s.api.storage.v1.VolumeAttachment#spec + */ + readonly spec: VolumeAttachmentSpec; + +} + +/** + * VolumeAttachmentList is a collection of VolumeAttachment objects. + * + * @schema io.k8s.api.storage.v1.VolumeAttachmentList + */ +export interface KubeVolumeAttachmentListProps { + /** + * Items is the list of VolumeAttachments + * + * @schema io.k8s.api.storage.v1.VolumeAttachmentList#items + */ + readonly items: KubeVolumeAttachmentProps[]; + + /** + * Standard list metadata More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.storage.v1.VolumeAttachmentList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node. + +VolumeAttachment objects are non-namespaced. + * + * @schema io.k8s.api.storage.v1alpha1.VolumeAttachment + */ +export interface KubeVolumeAttachmentV1Alpha1Props { + /** + * Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.storage.v1alpha1.VolumeAttachment#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Specification of the desired attach/detach volume behavior. Populated by the Kubernetes system. + * + * @schema io.k8s.api.storage.v1alpha1.VolumeAttachment#spec + */ + readonly spec: VolumeAttachmentSpec; + +} + +/** + * VolumeAttachmentList is a collection of VolumeAttachment objects. + * + * @schema io.k8s.api.storage.v1alpha1.VolumeAttachmentList + */ +export interface KubeVolumeAttachmentListV1Alpha1Props { + /** + * Items is the list of VolumeAttachments + * + * @schema io.k8s.api.storage.v1alpha1.VolumeAttachmentList#items + */ + readonly items: KubeVolumeAttachmentV1Alpha1Props[]; + + /** + * Standard list metadata More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.storage.v1alpha1.VolumeAttachmentList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * CSIDriver captures information about a Container Storage Interface (CSI) volume driver deployed on the cluster. CSI drivers do not need to create the CSIDriver object directly. Instead they may use the cluster-driver-registrar sidecar container. When deployed with a CSI driver it automatically creates a CSIDriver object representing the driver. Kubernetes attach detach controller uses this object to determine whether attach is required. Kubelet uses this object to determine whether pod information needs to be passed on mount. CSIDriver objects are non-namespaced. + * + * @schema io.k8s.api.storage.v1beta1.CSIDriver + */ +export interface KubeCsiDriverV1Beta1Props { + /** + * Standard object metadata. metadata.Name indicates the name of the CSI driver that this object refers to; it MUST be the same name returned by the CSI GetPluginName() call for that driver. The driver name must be 63 characters or less, beginning and ending with an alphanumeric character ([a-z0-9A-Z]) with dashes (-), dots (.), and alphanumerics between. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.storage.v1beta1.CSIDriver#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Specification of the CSI Driver. + * + * @schema io.k8s.api.storage.v1beta1.CSIDriver#spec + */ + readonly spec: CsiDriverSpec; + +} + +/** + * CSIDriverList is a collection of CSIDriver objects. + * + * @schema io.k8s.api.storage.v1beta1.CSIDriverList + */ +export interface KubeCsiDriverListV1Beta1Props { + /** + * items is the list of CSIDriver + * + * @schema io.k8s.api.storage.v1beta1.CSIDriverList#items + */ + readonly items: KubeCsiDriverV1Beta1Props[]; + + /** + * Standard list metadata More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.storage.v1beta1.CSIDriverList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * CSINode holds information about all CSI drivers installed on a node. CSI drivers do not need to create the CSINode object directly. As long as they use the node-driver-registrar sidecar container, the kubelet will automatically populate the CSINode object for the CSI driver as part of kubelet plugin registration. CSINode has the same name as a node. If the object is missing, it means either there are no CSI Drivers available on the node, or the Kubelet version is low enough that it doesn't create this object. CSINode has an OwnerReference that points to the corresponding node object. + * + * @schema io.k8s.api.storage.v1beta1.CSINode + */ +export interface KubeCsiNodeV1Beta1Props { + /** + * metadata.name must be the Kubernetes node name. + * + * @schema io.k8s.api.storage.v1beta1.CSINode#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * spec is the specification of CSINode + * + * @schema io.k8s.api.storage.v1beta1.CSINode#spec + */ + readonly spec: CsiNodeSpec; + +} + +/** + * CSINodeList is a collection of CSINode objects. + * + * @schema io.k8s.api.storage.v1beta1.CSINodeList + */ +export interface KubeCsiNodeListV1Beta1Props { + /** + * items is the list of CSINode + * + * @schema io.k8s.api.storage.v1beta1.CSINodeList#items + */ + readonly items: KubeCsiNodeV1Beta1Props[]; + + /** + * Standard list metadata More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.storage.v1beta1.CSINodeList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * StorageClass describes the parameters for a class of storage for which PersistentVolumes can be dynamically provisioned. + +StorageClasses are non-namespaced; the name of the storage class according to etcd is in ObjectMeta.Name. + * + * @schema io.k8s.api.storage.v1beta1.StorageClass + */ +export interface KubeStorageClassV1Beta1Props { + /** + * AllowVolumeExpansion shows whether the storage class allow volume expand + * + * @schema io.k8s.api.storage.v1beta1.StorageClass#allowVolumeExpansion + */ + readonly allowVolumeExpansion?: boolean; + + /** + * Restrict the node topologies where volumes can be dynamically provisioned. Each volume plugin defines its own supported topology specifications. An empty TopologySelectorTerm list means there is no topology restriction. This field is only honored by servers that enable the VolumeScheduling feature. + * + * @schema io.k8s.api.storage.v1beta1.StorageClass#allowedTopologies + */ + readonly allowedTopologies?: TopologySelectorTerm[]; + + /** + * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.storage.v1beta1.StorageClass#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Dynamically provisioned PersistentVolumes of this storage class are created with these mountOptions, e.g. ["ro", "soft"]. Not validated - mount of the PVs will simply fail if one is invalid. + * + * @schema io.k8s.api.storage.v1beta1.StorageClass#mountOptions + */ + readonly mountOptions?: string[]; + + /** + * Parameters holds the parameters for the provisioner that should create volumes of this storage class. + * + * @schema io.k8s.api.storage.v1beta1.StorageClass#parameters + */ + readonly parameters?: { [key: string]: string }; + + /** + * Provisioner indicates the type of the provisioner. + * + * @schema io.k8s.api.storage.v1beta1.StorageClass#provisioner + */ + readonly provisioner: string; + + /** + * Dynamically provisioned PersistentVolumes of this storage class are created with this reclaimPolicy. Defaults to Delete. + * + * @default Delete. + * @schema io.k8s.api.storage.v1beta1.StorageClass#reclaimPolicy + */ + readonly reclaimPolicy?: string; + + /** + * VolumeBindingMode indicates how PersistentVolumeClaims should be provisioned and bound. When unset, VolumeBindingImmediate is used. This field is only honored by servers that enable the VolumeScheduling feature. + * + * @schema io.k8s.api.storage.v1beta1.StorageClass#volumeBindingMode + */ + readonly volumeBindingMode?: string; + +} + +/** + * StorageClassList is a collection of storage classes. + * + * @schema io.k8s.api.storage.v1beta1.StorageClassList + */ +export interface KubeStorageClassListV1Beta1Props { + /** + * Items is the list of StorageClasses + * + * @schema io.k8s.api.storage.v1beta1.StorageClassList#items + */ + readonly items: KubeStorageClassV1Beta1Props[]; + + /** + * Standard list metadata More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.storage.v1beta1.StorageClassList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node. + +VolumeAttachment objects are non-namespaced. + * + * @schema io.k8s.api.storage.v1beta1.VolumeAttachment + */ +export interface KubeVolumeAttachmentV1Beta1Props { + /** + * Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.storage.v1beta1.VolumeAttachment#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Specification of the desired attach/detach volume behavior. Populated by the Kubernetes system. + * + * @schema io.k8s.api.storage.v1beta1.VolumeAttachment#spec + */ + readonly spec: VolumeAttachmentSpec; + +} + +/** + * VolumeAttachmentList is a collection of VolumeAttachment objects. + * + * @schema io.k8s.api.storage.v1beta1.VolumeAttachmentList + */ +export interface KubeVolumeAttachmentListV1Beta1Props { + /** + * Items is the list of VolumeAttachments + * + * @schema io.k8s.api.storage.v1beta1.VolumeAttachmentList#items + */ + readonly items: KubeVolumeAttachmentV1Beta1Props[]; + + /** + * Standard list metadata More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.storage.v1beta1.VolumeAttachmentList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * CustomResourceDefinition represents a resource that should be exposed on the API server. Its name MUST be in the format <.spec.name>.<.spec.group>. + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition + */ +export interface KubeCustomResourceDefinitionV1Beta1Props { + /** + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Spec describes how the user wants the resources to appear + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition#spec + */ + readonly spec: CustomResourceDefinitionSpec; + +} + +/** + * CustomResourceDefinitionList is a list of CustomResourceDefinition objects. + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionList + */ +export interface KubeCustomResourceDefinitionListV1Beta1Props { + /** + * Items individual CustomResourceDefinitions + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionList#items + */ + readonly items: KubeCustomResourceDefinitionV1Beta1Props[]; + + /** + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * Status is a return value for calls that don't return other objects. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.Status + */ +export interface KubeStatusProps { + /** + * Suggested HTTP return code for this status, 0 if not set. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.Status#code + */ + readonly code?: number; + + /** + * Extended data associated with the reason. Each reason may define its own extended details. This field is optional and the data returned is not guaranteed to conform to any schema except that defined by the reason type. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.Status#details + */ + readonly details?: StatusDetails; + + /** + * A human-readable description of the status of this operation. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.Status#message + */ + readonly message?: string; + + /** + * Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.Status#metadata + */ + readonly metadata?: ListMeta; + + /** + * A machine-readable description of why this operation is in the "Failure" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.Status#reason + */ + readonly reason?: string; + +} + +/** + * APIService represents a server for a particular GroupVersion. Name must be "version.group". + * + * @schema io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService + */ +export interface KubeApiServiceProps { + /** + * @schema io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Spec contains information for locating and communicating with a server + * + * @schema io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService#spec + */ + readonly spec?: ApiServiceSpec; + +} + +/** + * APIServiceList is a list of APIService objects. + * + * @schema io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceList + */ +export interface KubeApiServiceListProps { + /** + * @schema io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceList#items + */ + readonly items: KubeApiServiceProps[]; + + /** + * @schema io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * APIService represents a server for a particular GroupVersion. Name must be "version.group". + * + * @schema io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService + */ +export interface KubeApiServiceV1Beta1Props { + /** + * @schema io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Spec contains information for locating and communicating with a server + * + * @schema io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService#spec + */ + readonly spec?: ApiServiceSpec; + +} + +/** + * APIServiceList is a list of APIService objects. + * + * @schema io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceList + */ +export interface KubeApiServiceListV1Beta1Props { + /** + * @schema io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceList#items + */ + readonly items: KubeApiServiceV1Beta1Props[]; + + /** + * @schema io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceList#metadata + */ + readonly metadata?: ListMeta; + +} + +/** + * ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta + */ +export interface ObjectMeta { + /** + * Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta#annotations + */ + readonly annotations?: { [key: string]: string }; + + /** + * The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta#clusterName + */ + readonly clusterName?: string; + + /** + * CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. + +Populated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta#creationTimestamp + */ + readonly creationTimestamp?: Date; + + /** + * Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta#deletionGracePeriodSeconds + */ + readonly deletionGracePeriodSeconds?: number; + + /** + * DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested. + +Populated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta#deletionTimestamp + */ + readonly deletionTimestamp?: Date; + + /** + * Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta#finalizers + */ + readonly finalizers?: string[]; + + /** + * GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server. + +If this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header). + +Applied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#idempotency + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta#generateName + */ + readonly generateName?: string; + + /** + * A sequence number representing a specific generation of the desired state. Populated by the system. Read-only. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta#generation + */ + readonly generation?: number; + + /** + * An initializer is a controller which enforces some system invariant at object creation time. This field is a list of initializers that have not yet acted on this object. If nil or empty, this object has been completely initialized. Otherwise, the object is considered uninitialized and is hidden (in list/watch and get calls) from clients that haven't explicitly asked to observe uninitialized objects. + +When an object is created, the system will populate this list with the current set of initializers. Only privileged users may set or modify this list. Once it is empty, it may not be modified further by any user. + +DEPRECATED - initializers are an alpha field and will be removed in v1.15. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta#initializers + */ + readonly initializers?: Initializers; + + /** + * Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta#labels + */ + readonly labels?: { [key: string]: string }; + + /** + * ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like "ci-cd". The set of fields is always in the version that the workflow used when modifying the object. + +This field is alpha and can be changed or removed without notice. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta#managedFields + */ + readonly managedFields?: ManagedFieldsEntry[]; + + /** + * Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta#name + */ + readonly name?: string; + + /** + * Namespace defines the space within each name must be unique. An empty namespace is equivalent to the "default" namespace, but "default" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty. + +Must be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta#namespace + */ + readonly namespace?: string; + + /** + * List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta#ownerReferences + */ + readonly ownerReferences?: OwnerReference[]; + + /** + * An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources. + +Populated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta#resourceVersion + */ + readonly resourceVersion?: string; + + /** + * SelfLink is a URL representing this object. Populated by the system. Read-only. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta#selfLink + */ + readonly selfLink?: string; + + /** + * UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations. + +Populated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta#uid + */ + readonly uid?: string; + +} + +/** + * MutatingWebhook describes an admission webhook and the resources and operations it applies to. + * + * @schema io.k8s.api.admissionregistration.v1beta1.MutatingWebhook + */ +export interface MutatingWebhook { + /** + * AdmissionReviewVersions is an ordered list of preferred `AdmissionReview` versions the Webhook expects. API server will try to use first version in the list which it supports. If none of the versions specified in this list supported by API server, validation will fail for this object. If a persisted webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail and be subject to the failure policy. Default to `['v1beta1']`. + * + * @default v1beta1']`. + * @schema io.k8s.api.admissionregistration.v1beta1.MutatingWebhook#admissionReviewVersions + */ + readonly admissionReviewVersions?: string[]; + + /** + * ClientConfig defines how to communicate with the hook. Required + * + * @schema io.k8s.api.admissionregistration.v1beta1.MutatingWebhook#clientConfig + */ + readonly clientConfig: WebhookClientConfig; + + /** + * FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Ignore. + * + * @default Ignore. + * @schema io.k8s.api.admissionregistration.v1beta1.MutatingWebhook#failurePolicy + */ + readonly failurePolicy?: string; + + /** + * matchPolicy defines how the "rules" list is used to match incoming requests. Allowed values are "Exact" or "Equivalent". + +- Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook. + +- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook. + +Defaults to "Exact" + * + * @default Exact" + * @schema io.k8s.api.admissionregistration.v1beta1.MutatingWebhook#matchPolicy + */ + readonly matchPolicy?: string; + + /** + * The name of the admission webhook. Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where "imagepolicy" is the name of the webhook, and kubernetes.io is the name of the organization. Required. + * + * @schema io.k8s.api.admissionregistration.v1beta1.MutatingWebhook#name + */ + readonly name: string; + + /** + * NamespaceSelector decides whether to run the webhook on an object based on whether the namespace for that object matches the selector. If the object itself is a namespace, the matching is performed on object.metadata.labels. If the object is another cluster scoped resource, it never skips the webhook. + +For example, to run the webhook on any objects whose namespace is not associated with "runlevel" of "0" or "1"; you will set the selector as follows: "namespaceSelector": { + "matchExpressions": [ + { + "key": "runlevel", + "operator": "NotIn", + "values": [ + "0", + "1" + ] + } + ] +} + +If instead you want to only run the webhook on any objects whose namespace is associated with the "environment" of "prod" or "staging"; you will set the selector as follows: "namespaceSelector": { + "matchExpressions": [ + { + "key": "environment", + "operator": "In", + "values": [ + "prod", + "staging" + ] + } + ] +} + +See https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ for more examples of label selectors. + +Default to the empty LabelSelector, which matches everything. + * + * @default the empty LabelSelector, which matches everything. + * @schema io.k8s.api.admissionregistration.v1beta1.MutatingWebhook#namespaceSelector + */ + readonly namespaceSelector?: LabelSelector; + + /** + * ObjectSelector decides whether to run the webhook based on if the object has matching labels. objectSelector is evaluated against both the oldObject and newObject that would be sent to the webhook, and is considered to match if either object matches the selector. A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match. Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels. Default to the empty LabelSelector, which matches everything. + * + * @default the empty LabelSelector, which matches everything. + * @schema io.k8s.api.admissionregistration.v1beta1.MutatingWebhook#objectSelector + */ + readonly objectSelector?: LabelSelector; + + /** + * reinvocationPolicy indicates whether this webhook should be called multiple times as part of a single admission evaluation. Allowed values are "Never" and "IfNeeded". + +Never: the webhook will not be called more than once in a single admission evaluation. + +IfNeeded: the webhook will be called at least one additional time as part of the admission evaluation if the object being admitted is modified by other admission plugins after the initial webhook call. Webhooks that specify this option *must* be idempotent, able to process objects they previously admitted. Note: * the number of additional invocations is not guaranteed to be exactly one. * if additional invocations result in further modifications to the object, webhooks are not guaranteed to be invoked again. * webhooks that use this option may be reordered to minimize the number of additional invocations. * to validate an object after all mutations are guaranteed complete, use a validating admission webhook instead. + +Defaults to "Never". + * + * @default Never". + * @schema io.k8s.api.admissionregistration.v1beta1.MutatingWebhook#reinvocationPolicy + */ + readonly reinvocationPolicy?: string; + + /** + * Rules describes what operations on what resources/subresources the webhook cares about. The webhook cares about an operation if it matches _any_ Rule. However, in order to prevent ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks from putting the cluster in a state which cannot be recovered from without completely disabling the plugin, ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks are never called on admission requests for ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects. + * + * @schema io.k8s.api.admissionregistration.v1beta1.MutatingWebhook#rules + */ + readonly rules?: RuleWithOperations[]; + + /** + * SideEffects states whether this webhookk has side effects. Acceptable values are: Unknown, None, Some, NoneOnDryRun Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission change and the side effects therefore need to be undone. Requests with the dryRun attribute will be auto-rejected if they match a webhook with sideEffects == Unknown or Some. Defaults to Unknown. + * + * @default Unknown. + * @schema io.k8s.api.admissionregistration.v1beta1.MutatingWebhook#sideEffects + */ + readonly sideEffects?: string; + + /** + * TimeoutSeconds specifies the timeout for this webhook. After the timeout passes, the webhook call will be ignored or the API call will fail based on the failure policy. The timeout value must be between 1 and 30 seconds. Default to 30 seconds. + * + * @default 30 seconds. + * @schema io.k8s.api.admissionregistration.v1beta1.MutatingWebhook#timeoutSeconds + */ + readonly timeoutSeconds?: number; + +} + +/** + * ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta + */ +export interface ListMeta { + /** + * continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta#continue + */ + readonly continue?: string; + + /** + * remainingItemCount is the number of subsequent items in the list which are not included in this list response. If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients should not rely on the remainingItemCount to be set or to be exact. + +This field is alpha and can be changed or removed without notice. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta#remainingItemCount + */ + readonly remainingItemCount?: number; + + /** + * String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta#resourceVersion + */ + readonly resourceVersion?: string; + + /** + * selfLink is a URL representing this object. Populated by the system. Read-only. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta#selfLink + */ + readonly selfLink?: string; + +} + +/** + * ValidatingWebhook describes an admission webhook and the resources and operations it applies to. + * + * @schema io.k8s.api.admissionregistration.v1beta1.ValidatingWebhook + */ +export interface ValidatingWebhook { + /** + * AdmissionReviewVersions is an ordered list of preferred `AdmissionReview` versions the Webhook expects. API server will try to use first version in the list which it supports. If none of the versions specified in this list supported by API server, validation will fail for this object. If a persisted webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail and be subject to the failure policy. Default to `['v1beta1']`. + * + * @default v1beta1']`. + * @schema io.k8s.api.admissionregistration.v1beta1.ValidatingWebhook#admissionReviewVersions + */ + readonly admissionReviewVersions?: string[]; + + /** + * ClientConfig defines how to communicate with the hook. Required + * + * @schema io.k8s.api.admissionregistration.v1beta1.ValidatingWebhook#clientConfig + */ + readonly clientConfig: WebhookClientConfig; + + /** + * FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Ignore. + * + * @default Ignore. + * @schema io.k8s.api.admissionregistration.v1beta1.ValidatingWebhook#failurePolicy + */ + readonly failurePolicy?: string; + + /** + * matchPolicy defines how the "rules" list is used to match incoming requests. Allowed values are "Exact" or "Equivalent". + +- Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook. + +- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook. + +Defaults to "Exact" + * + * @default Exact" + * @schema io.k8s.api.admissionregistration.v1beta1.ValidatingWebhook#matchPolicy + */ + readonly matchPolicy?: string; + + /** + * The name of the admission webhook. Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where "imagepolicy" is the name of the webhook, and kubernetes.io is the name of the organization. Required. + * + * @schema io.k8s.api.admissionregistration.v1beta1.ValidatingWebhook#name + */ + readonly name: string; + + /** + * NamespaceSelector decides whether to run the webhook on an object based on whether the namespace for that object matches the selector. If the object itself is a namespace, the matching is performed on object.metadata.labels. If the object is another cluster scoped resource, it never skips the webhook. + +For example, to run the webhook on any objects whose namespace is not associated with "runlevel" of "0" or "1"; you will set the selector as follows: "namespaceSelector": { + "matchExpressions": [ + { + "key": "runlevel", + "operator": "NotIn", + "values": [ + "0", + "1" + ] + } + ] +} + +If instead you want to only run the webhook on any objects whose namespace is associated with the "environment" of "prod" or "staging"; you will set the selector as follows: "namespaceSelector": { + "matchExpressions": [ + { + "key": "environment", + "operator": "In", + "values": [ + "prod", + "staging" + ] + } + ] +} + +See https://kubernetes.io/docs/concepts/overview/working-with-objects/labels for more examples of label selectors. + +Default to the empty LabelSelector, which matches everything. + * + * @default the empty LabelSelector, which matches everything. + * @schema io.k8s.api.admissionregistration.v1beta1.ValidatingWebhook#namespaceSelector + */ + readonly namespaceSelector?: LabelSelector; + + /** + * ObjectSelector decides whether to run the webhook based on if the object has matching labels. objectSelector is evaluated against both the oldObject and newObject that would be sent to the webhook, and is considered to match if either object matches the selector. A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match. Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels. Default to the empty LabelSelector, which matches everything. + * + * @default the empty LabelSelector, which matches everything. + * @schema io.k8s.api.admissionregistration.v1beta1.ValidatingWebhook#objectSelector + */ + readonly objectSelector?: LabelSelector; + + /** + * Rules describes what operations on what resources/subresources the webhook cares about. The webhook cares about an operation if it matches _any_ Rule. However, in order to prevent ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks from putting the cluster in a state which cannot be recovered from without completely disabling the plugin, ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks are never called on admission requests for ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects. + * + * @schema io.k8s.api.admissionregistration.v1beta1.ValidatingWebhook#rules + */ + readonly rules?: RuleWithOperations[]; + + /** + * SideEffects states whether this webhookk has side effects. Acceptable values are: Unknown, None, Some, NoneOnDryRun Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission change and the side effects therefore need to be undone. Requests with the dryRun attribute will be auto-rejected if they match a webhook with sideEffects == Unknown or Some. Defaults to Unknown. + * + * @default Unknown. + * @schema io.k8s.api.admissionregistration.v1beta1.ValidatingWebhook#sideEffects + */ + readonly sideEffects?: string; + + /** + * TimeoutSeconds specifies the timeout for this webhook. After the timeout passes, the webhook call will be ignored or the API call will fail based on the failure policy. The timeout value must be between 1 and 30 seconds. Default to 30 seconds. + * + * @default 30 seconds. + * @schema io.k8s.api.admissionregistration.v1beta1.ValidatingWebhook#timeoutSeconds + */ + readonly timeoutSeconds?: number; + +} + +/** + * RawExtension is used to hold extensions in external versions. + +To use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct. You also need to register your various plugin types. + +// Internal package: type MyAPIObject struct { + runtime.TypeMeta `json:",inline"` + MyPlugin runtime.Object `json:"myPlugin"` +} type PluginA struct { + AOption string `json:"aOption"` +} + +// External package: type MyAPIObject struct { + runtime.TypeMeta `json:",inline"` + MyPlugin runtime.RawExtension `json:"myPlugin"` +} type PluginA struct { + AOption string `json:"aOption"` +} + +// On the wire, the JSON will look something like this: { + "kind":"MyAPIObject", + "apiVersion":"v1", + "myPlugin": { + "kind":"PluginA", + "aOption":"foo", + }, +} + +So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject. That causes the raw JSON to be stored, but not unpacked. The next step is to copy (using pkg/conversion) into the internal struct. The runtime package's DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object. (TODO: In the case where the object is of an unknown type, a runtime.Unknown object will be created and stored.) + * + * @schema io.k8s.apimachinery.pkg.runtime.RawExtension + */ +export interface RawExtension { + /** + * Raw is the underlying serialization of this object. + * + * @schema io.k8s.apimachinery.pkg.runtime.RawExtension#Raw + */ + readonly raw?: string; + +} + +/** + * DaemonSetSpec is the specification of a daemon set. + * + * @schema io.k8s.api.extensions.v1beta1.DaemonSetSpec + */ +export interface DaemonSetSpec { + /** + * The minimum number of seconds for which a newly created DaemonSet pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready). + * + * @default 0 (pod will be considered available as soon as it is ready). + * @schema io.k8s.api.extensions.v1beta1.DaemonSetSpec#minReadySeconds + */ + readonly minReadySeconds?: number; + + /** + * The number of old history to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10. + * + * @default 10. + * @schema io.k8s.api.extensions.v1beta1.DaemonSetSpec#revisionHistoryLimit + */ + readonly revisionHistoryLimit?: number; + + /** + * A label query over pods that are managed by the daemon set. Must match in order to be controlled. If empty, defaulted to labels on Pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors + * + * @schema io.k8s.api.extensions.v1beta1.DaemonSetSpec#selector + */ + readonly selector?: LabelSelector; + + /** + * An object that describes the pod that will be created. The DaemonSet will create exactly one copy of this pod on every node that matches the template's node selector (or on every node if no node selector is specified). More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template + * + * @schema io.k8s.api.extensions.v1beta1.DaemonSetSpec#template + */ + readonly template: PodTemplateSpec; + + /** + * DEPRECATED. A sequence number representing a specific generation of the template. Populated by the system. It can be set only during the creation. + * + * @schema io.k8s.api.extensions.v1beta1.DaemonSetSpec#templateGeneration + */ + readonly templateGeneration?: number; + + /** + * An update strategy to replace existing DaemonSet pods with new pods. + * + * @schema io.k8s.api.extensions.v1beta1.DaemonSetSpec#updateStrategy + */ + readonly updateStrategy?: DaemonSetUpdateStrategy; + +} + +/** + * DeploymentSpec is the specification of the desired behavior of the Deployment. + * + * @schema io.k8s.api.apps.v1beta2.DeploymentSpec + */ +export interface DeploymentSpec { + /** + * Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready) + * + * @default 0 (pod will be considered available as soon as it is ready) + * @schema io.k8s.api.apps.v1beta2.DeploymentSpec#minReadySeconds + */ + readonly minReadySeconds?: number; + + /** + * Indicates that the deployment is paused. + * + * @schema io.k8s.api.apps.v1beta2.DeploymentSpec#paused + */ + readonly paused?: boolean; + + /** + * The maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Note that progress will not be estimated during the time a deployment is paused. Defaults to 600s. + * + * @default 600s. + * @schema io.k8s.api.apps.v1beta2.DeploymentSpec#progressDeadlineSeconds + */ + readonly progressDeadlineSeconds?: number; + + /** + * Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1. + * + * @default 1. + * @schema io.k8s.api.apps.v1beta2.DeploymentSpec#replicas + */ + readonly replicas?: number; + + /** + * The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10. + * + * @default 10. + * @schema io.k8s.api.apps.v1beta2.DeploymentSpec#revisionHistoryLimit + */ + readonly revisionHistoryLimit?: number; + + /** + * Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment. It must match the pod template's labels. + * + * @schema io.k8s.api.apps.v1beta2.DeploymentSpec#selector + */ + readonly selector: LabelSelector; + + /** + * The deployment strategy to use to replace existing pods with new ones. + * + * @schema io.k8s.api.apps.v1beta2.DeploymentSpec#strategy + */ + readonly strategy?: DeploymentStrategy; + + /** + * Template describes the pods that will be created. + * + * @schema io.k8s.api.apps.v1beta2.DeploymentSpec#template + */ + readonly template: PodTemplateSpec; + +} + +/** + * ReplicaSetSpec is the specification of a ReplicaSet. + * + * @schema io.k8s.api.extensions.v1beta1.ReplicaSetSpec + */ +export interface ReplicaSetSpec { + /** + * Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready) + * + * @default 0 (pod will be considered available as soon as it is ready) + * @schema io.k8s.api.extensions.v1beta1.ReplicaSetSpec#minReadySeconds + */ + readonly minReadySeconds?: number; + + /** + * Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller + * + * @default 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller + * @schema io.k8s.api.extensions.v1beta1.ReplicaSetSpec#replicas + */ + readonly replicas?: number; + + /** + * Selector is a label query over pods that should match the replica count. If the selector is empty, it is defaulted to the labels present on the pod template. Label keys and values that must match in order to be controlled by this replica set. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors + * + * @schema io.k8s.api.extensions.v1beta1.ReplicaSetSpec#selector + */ + readonly selector?: LabelSelector; + + /** + * Template is the object that describes the pod that will be created if insufficient replicas are detected. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template + * + * @schema io.k8s.api.extensions.v1beta1.ReplicaSetSpec#template + */ + readonly template?: PodTemplateSpec; + +} + +/** + * A StatefulSetSpec is the specification of a StatefulSet. + * + * @schema io.k8s.api.apps.v1beta2.StatefulSetSpec + */ +export interface StatefulSetSpec { + /** + * podManagementPolicy controls how pods are created during initial scale up, when replacing pods on nodes, or when scaling down. The default policy is `OrderedReady`, where pods are created in increasing order (pod-0, then pod-1, etc) and the controller will wait until each pod is ready before continuing. When scaling down, the pods are removed in the opposite order. The alternative policy is `Parallel` which will create pods in parallel to match the desired scale without waiting, and on scale down will delete all pods at once. + * + * @schema io.k8s.api.apps.v1beta2.StatefulSetSpec#podManagementPolicy + */ + readonly podManagementPolicy?: string; + + /** + * replicas is the desired number of replicas of the given Template. These are replicas in the sense that they are instantiations of the same Template, but individual replicas also have a consistent identity. If unspecified, defaults to 1. + * + * @schema io.k8s.api.apps.v1beta2.StatefulSetSpec#replicas + */ + readonly replicas?: number; + + /** + * revisionHistoryLimit is the maximum number of revisions that will be maintained in the StatefulSet's revision history. The revision history consists of all revisions not represented by a currently applied StatefulSetSpec version. The default value is 10. + * + * @schema io.k8s.api.apps.v1beta2.StatefulSetSpec#revisionHistoryLimit + */ + readonly revisionHistoryLimit?: number; + + /** + * selector is a label query over pods that should match the replica count. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors + * + * @schema io.k8s.api.apps.v1beta2.StatefulSetSpec#selector + */ + readonly selector: LabelSelector; + + /** + * serviceName is the name of the service that governs this StatefulSet. This service must exist before the StatefulSet, and is responsible for the network identity of the set. Pods get DNS/hostnames that follow the pattern: pod-specific-string.serviceName.default.svc.cluster.local where "pod-specific-string" is managed by the StatefulSet controller. + * + * @schema io.k8s.api.apps.v1beta2.StatefulSetSpec#serviceName + */ + readonly serviceName: string; + + /** + * template is the object that describes the pod that will be created if insufficient replicas are detected. Each pod stamped out by the StatefulSet will fulfill this Template, but have a unique identity from the rest of the StatefulSet. + * + * @schema io.k8s.api.apps.v1beta2.StatefulSetSpec#template + */ + readonly template: PodTemplateSpec; + + /** + * updateStrategy indicates the StatefulSetUpdateStrategy that will be employed to update Pods in the StatefulSet when a revision is made to Template. + * + * @schema io.k8s.api.apps.v1beta2.StatefulSetSpec#updateStrategy + */ + readonly updateStrategy?: StatefulSetUpdateStrategy; + + /** + * volumeClaimTemplates is a list of claims that pods are allowed to reference. The StatefulSet controller is responsible for mapping network identities to claims in a way that maintains the identity of a pod. Every claim in this list must have at least one matching (by name) volumeMount in one container in the template. A claim in this list takes precedence over any volumes in the template, with the same name. + * + * @schema io.k8s.api.apps.v1beta2.StatefulSetSpec#volumeClaimTemplates + */ + readonly volumeClaimTemplates?: KubePersistentVolumeClaimProps[]; + +} + +/** + * ScaleSpec describes the attributes of a scale subresource. + * + * @schema io.k8s.api.autoscaling.v1.ScaleSpec + */ +export interface ScaleSpec { + /** + * desired number of instances for the scaled object. + * + * @schema io.k8s.api.autoscaling.v1.ScaleSpec#replicas + */ + readonly replicas?: number; + +} + +/** + * AuditSinkSpec holds the spec for the audit sink + * + * @schema io.k8s.api.auditregistration.v1alpha1.AuditSinkSpec + */ +export interface AuditSinkSpec { + /** + * Policy defines the policy for selecting which events should be sent to the webhook required + * + * @schema io.k8s.api.auditregistration.v1alpha1.AuditSinkSpec#policy + */ + readonly policy: Policy; + + /** + * Webhook to send events required + * + * @schema io.k8s.api.auditregistration.v1alpha1.AuditSinkSpec#webhook + */ + readonly webhook: Webhook; + +} + +/** + * TokenReviewSpec is a description of the token authentication request. + * + * @schema io.k8s.api.authentication.v1beta1.TokenReviewSpec + */ +export interface TokenReviewSpec { + /** + * Audiences is a list of the identifiers that the resource server presented with the token identifies as. Audience-aware token authenticators will verify that the token was intended for at least one of the audiences in this list. If no audiences are provided, the audience will default to the audience of the Kubernetes apiserver. + * + * @schema io.k8s.api.authentication.v1beta1.TokenReviewSpec#audiences + */ + readonly audiences?: string[]; + + /** + * Token is the opaque bearer token. + * + * @schema io.k8s.api.authentication.v1beta1.TokenReviewSpec#token + */ + readonly token?: string; + +} + +/** + * SubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set + * + * @schema io.k8s.api.authorization.v1beta1.SubjectAccessReviewSpec + */ +export interface SubjectAccessReviewSpec { + /** + * Extra corresponds to the user.Info.GetExtra() method from the authenticator. Since that is input to the authorizer it needs a reflection here. + * + * @schema io.k8s.api.authorization.v1beta1.SubjectAccessReviewSpec#extra + */ + readonly extra?: { [key: string]: string[] }; + + /** + * Groups is the groups you're testing for. + * + * @schema io.k8s.api.authorization.v1beta1.SubjectAccessReviewSpec#group + */ + readonly group?: string[]; + + /** + * NonResourceAttributes describes information for a non-resource access request + * + * @schema io.k8s.api.authorization.v1beta1.SubjectAccessReviewSpec#nonResourceAttributes + */ + readonly nonResourceAttributes?: NonResourceAttributes; + + /** + * ResourceAuthorizationAttributes describes information for a resource access request + * + * @schema io.k8s.api.authorization.v1beta1.SubjectAccessReviewSpec#resourceAttributes + */ + readonly resourceAttributes?: ResourceAttributes; + + /** + * UID information about the requesting user. + * + * @schema io.k8s.api.authorization.v1beta1.SubjectAccessReviewSpec#uid + */ + readonly uid?: string; + + /** + * User is the user you're testing for. If you specify "User" but not "Group", then is it interpreted as "What if User were not a member of any groups + * + * @schema io.k8s.api.authorization.v1beta1.SubjectAccessReviewSpec#user + */ + readonly user?: string; + +} + +/** + * SelfSubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set + * + * @schema io.k8s.api.authorization.v1beta1.SelfSubjectAccessReviewSpec + */ +export interface SelfSubjectAccessReviewSpec { + /** + * NonResourceAttributes describes information for a non-resource access request + * + * @schema io.k8s.api.authorization.v1beta1.SelfSubjectAccessReviewSpec#nonResourceAttributes + */ + readonly nonResourceAttributes?: NonResourceAttributes; + + /** + * ResourceAuthorizationAttributes describes information for a resource access request + * + * @schema io.k8s.api.authorization.v1beta1.SelfSubjectAccessReviewSpec#resourceAttributes + */ + readonly resourceAttributes?: ResourceAttributes; + +} + +/** + * @schema io.k8s.api.authorization.v1beta1.SelfSubjectRulesReviewSpec + */ +export interface SelfSubjectRulesReviewSpec { + /** + * Namespace to evaluate rules for. Required. + * + * @schema io.k8s.api.authorization.v1beta1.SelfSubjectRulesReviewSpec#namespace + */ + readonly namespace?: string; + +} + +/** + * HorizontalPodAutoscalerSpec describes the desired functionality of the HorizontalPodAutoscaler. + * + * @schema io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerSpec + */ +export interface HorizontalPodAutoscalerSpec { + /** + * maxReplicas is the upper limit for the number of replicas to which the autoscaler can scale up. It cannot be less that minReplicas. + * + * @schema io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerSpec#maxReplicas + */ + readonly maxReplicas: number; + + /** + * metrics contains the specifications for which to use to calculate the desired replica count (the maximum replica count across all metrics will be used). The desired replica count is calculated multiplying the ratio between the target value and the current value by the current number of pods. Ergo, metrics used must decrease as the pod count is increased, and vice-versa. See the individual metric source types for more information about how each type of metric must respond. If not set, the default metric will be set to 80% average CPU utilization. + * + * @schema io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerSpec#metrics + */ + readonly metrics?: MetricSpec[]; + + /** + * minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down. It defaults to 1 pod. + * + * @schema io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerSpec#minReplicas + */ + readonly minReplicas?: number; + + /** + * scaleTargetRef points to the target resource to scale, and is used to the pods for which metrics should be collected, as well as to actually change the replica count. + * + * @schema io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerSpec#scaleTargetRef + */ + readonly scaleTargetRef: CrossVersionObjectReference; + +} + +/** + * JobSpec describes how the job execution will look like. + * + * @schema io.k8s.api.batch.v1.JobSpec + */ +export interface JobSpec { + /** + * Specifies the duration in seconds relative to the startTime that the job may be active before the system tries to terminate it; value must be positive integer + * + * @schema io.k8s.api.batch.v1.JobSpec#activeDeadlineSeconds + */ + readonly activeDeadlineSeconds?: number; + + /** + * Specifies the number of retries before marking this job failed. Defaults to 6 + * + * @default 6 + * @schema io.k8s.api.batch.v1.JobSpec#backoffLimit + */ + readonly backoffLimit?: number; + + /** + * Specifies the desired number of successfully finished pods the job should be run with. Setting to nil means that the success of any pod signals the success of all pods, and allows parallelism to have any positive value. Setting to 1 means that parallelism is limited to 1 and the success of that pod signals the success of the job. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/ + * + * @schema io.k8s.api.batch.v1.JobSpec#completions + */ + readonly completions?: number; + + /** + * manualSelector controls generation of pod labels and pod selectors. Leave `manualSelector` unset unless you are certain what you are doing. When false or unset, the system pick labels unique to this job and appends those labels to the pod template. When true, the user is responsible for picking unique labels and specifying the selector. Failure to pick a unique label may cause this and other jobs to not function correctly. However, You may see `manualSelector=true` in jobs that were created with the old `extensions/v1beta1` API. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/#specifying-your-own-pod-selector + * + * @schema io.k8s.api.batch.v1.JobSpec#manualSelector + */ + readonly manualSelector?: boolean; + + /** + * Specifies the maximum desired number of pods the job should run at any given time. The actual number of pods running in steady state will be less than this number when ((.spec.completions - .status.successful) < .spec.parallelism), i.e. when the work left to do is less than max parallelism. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/ + * + * @schema io.k8s.api.batch.v1.JobSpec#parallelism + */ + readonly parallelism?: number; + + /** + * A label query over pods that should match the pod count. Normally, the system sets this field for you. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors + * + * @schema io.k8s.api.batch.v1.JobSpec#selector + */ + readonly selector?: LabelSelector; + + /** + * Describes the pod that will be created when executing a job. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/ + * + * @schema io.k8s.api.batch.v1.JobSpec#template + */ + readonly template: PodTemplateSpec; + + /** + * ttlSecondsAfterFinished limits the lifetime of a Job that has finished execution (either Complete or Failed). If this field is set, ttlSecondsAfterFinished after the Job finishes, it is eligible to be automatically deleted. When the Job is being deleted, its lifecycle guarantees (e.g. finalizers) will be honored. If this field is unset, the Job won't be automatically deleted. If this field is set to zero, the Job becomes eligible to be deleted immediately after it finishes. This field is alpha-level and is only honored by servers that enable the TTLAfterFinished feature. + * + * @schema io.k8s.api.batch.v1.JobSpec#ttlSecondsAfterFinished + */ + readonly ttlSecondsAfterFinished?: number; + +} + +/** + * CronJobSpec describes how the job execution will look like and when it will actually run. + * + * @schema io.k8s.api.batch.v2alpha1.CronJobSpec + */ +export interface CronJobSpec { + /** + * Specifies how to treat concurrent executions of a Job. Valid values are: - "Allow" (default): allows CronJobs to run concurrently; - "Forbid": forbids concurrent runs, skipping next run if previous run hasn't finished yet; - "Replace": cancels currently running job and replaces it with a new one + * + * @schema io.k8s.api.batch.v2alpha1.CronJobSpec#concurrencyPolicy + */ + readonly concurrencyPolicy?: string; + + /** + * The number of failed finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified. + * + * @schema io.k8s.api.batch.v2alpha1.CronJobSpec#failedJobsHistoryLimit + */ + readonly failedJobsHistoryLimit?: number; + + /** + * Specifies the job that will be created when executing a CronJob. + * + * @schema io.k8s.api.batch.v2alpha1.CronJobSpec#jobTemplate + */ + readonly jobTemplate: JobTemplateSpec; + + /** + * The schedule in Cron format, see https://en.wikipedia.org/wiki/Cron. + * + * @schema io.k8s.api.batch.v2alpha1.CronJobSpec#schedule + */ + readonly schedule: string; + + /** + * Optional deadline in seconds for starting the job if it misses scheduled time for any reason. Missed jobs executions will be counted as failed ones. + * + * @schema io.k8s.api.batch.v2alpha1.CronJobSpec#startingDeadlineSeconds + */ + readonly startingDeadlineSeconds?: number; + + /** + * The number of successful finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified. + * + * @schema io.k8s.api.batch.v2alpha1.CronJobSpec#successfulJobsHistoryLimit + */ + readonly successfulJobsHistoryLimit?: number; + + /** + * This flag tells the controller to suspend subsequent executions, it does not apply to already started executions. Defaults to false. + * + * @default false. + * @schema io.k8s.api.batch.v2alpha1.CronJobSpec#suspend + */ + readonly suspend?: boolean; + +} + +/** + * This information is immutable after the request is created. Only the Request and Usages fields can be set on creation, other fields are derived by Kubernetes and cannot be modified by users. + * + * @schema io.k8s.api.certificates.v1beta1.CertificateSigningRequestSpec + */ +export interface CertificateSigningRequestSpec { + /** + * Extra information about the requesting user. See user.Info interface for details. + * + * @schema io.k8s.api.certificates.v1beta1.CertificateSigningRequestSpec#extra + */ + readonly extra?: { [key: string]: string[] }; + + /** + * Group information about the requesting user. See user.Info interface for details. + * + * @schema io.k8s.api.certificates.v1beta1.CertificateSigningRequestSpec#groups + */ + readonly groups?: string[]; + + /** + * Base64-encoded PKCS#10 CSR data + * + * @schema io.k8s.api.certificates.v1beta1.CertificateSigningRequestSpec#request + */ + readonly request: string; + + /** + * UID information about the requesting user. See user.Info interface for details. + * + * @schema io.k8s.api.certificates.v1beta1.CertificateSigningRequestSpec#uid + */ + readonly uid?: string; + + /** + * allowedUsages specifies a set of usage contexts the key will be valid for. See: https://tools.ietf.org/html/rfc5280#section-4.2.1.3 + https://tools.ietf.org/html/rfc5280#section-4.2.1.12 + * + * @schema io.k8s.api.certificates.v1beta1.CertificateSigningRequestSpec#usages + */ + readonly usages?: string[]; + + /** + * Information about the requesting user. See user.Info interface for details. + * + * @schema io.k8s.api.certificates.v1beta1.CertificateSigningRequestSpec#username + */ + readonly username?: string; + +} + +/** + * LeaseSpec is a specification of a Lease. + * + * @schema io.k8s.api.coordination.v1beta1.LeaseSpec + */ +export interface LeaseSpec { + /** + * acquireTime is a time when the current lease was acquired. + * + * @schema io.k8s.api.coordination.v1beta1.LeaseSpec#acquireTime + */ + readonly acquireTime?: Date; + + /** + * holderIdentity contains the identity of the holder of a current lease. + * + * @schema io.k8s.api.coordination.v1beta1.LeaseSpec#holderIdentity + */ + readonly holderIdentity?: string; + + /** + * leaseDurationSeconds is a duration that candidates for a lease need to wait to force acquire it. This is measure against time of last observed RenewTime. + * + * @schema io.k8s.api.coordination.v1beta1.LeaseSpec#leaseDurationSeconds + */ + readonly leaseDurationSeconds?: number; + + /** + * leaseTransitions is the number of transitions of a lease between holders. + * + * @schema io.k8s.api.coordination.v1beta1.LeaseSpec#leaseTransitions + */ + readonly leaseTransitions?: number; + + /** + * renewTime is a time when the current holder of a lease has last updated the lease. + * + * @schema io.k8s.api.coordination.v1beta1.LeaseSpec#renewTime + */ + readonly renewTime?: Date; + +} + +/** + * ObjectReference contains enough information to let you inspect or modify the referred object. + * + * @schema io.k8s.api.core.v1.ObjectReference + */ +export interface ObjectReference { + /** + * API version of the referent. + * + * @schema io.k8s.api.core.v1.ObjectReference#apiVersion + */ + readonly apiVersion?: string; + + /** + * If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: "spec.containers{name}" (where "name" refers to the name of the container that triggered the event) or if no container name is specified "spec.containers[2]" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object. + * + * @schema io.k8s.api.core.v1.ObjectReference#fieldPath + */ + readonly fieldPath?: string; + + /** + * Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds + * + * @schema io.k8s.api.core.v1.ObjectReference#kind + */ + readonly kind?: string; + + /** + * Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + * + * @schema io.k8s.api.core.v1.ObjectReference#name + */ + readonly name?: string; + + /** + * Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ + * + * @schema io.k8s.api.core.v1.ObjectReference#namespace + */ + readonly namespace?: string; + + /** + * Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency + * + * @schema io.k8s.api.core.v1.ObjectReference#resourceVersion + */ + readonly resourceVersion?: string; + + /** + * UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids + * + * @schema io.k8s.api.core.v1.ObjectReference#uid + */ + readonly uid?: string; + +} + +/** + * Information about the condition of a component. + * + * @schema io.k8s.api.core.v1.ComponentCondition + */ +export interface ComponentCondition { + /** + * Condition error code for a component. For example, a health check error code. + * + * @schema io.k8s.api.core.v1.ComponentCondition#error + */ + readonly error?: string; + + /** + * Message about the condition for a component. For example, information about a health check. + * + * @schema io.k8s.api.core.v1.ComponentCondition#message + */ + readonly message?: string; + + /** + * Status of the condition for a component. Valid values for "Healthy": "True", "False", or "Unknown". + * + * @schema io.k8s.api.core.v1.ComponentCondition#status + */ + readonly status: string; + + /** + * Type of condition for a component. Valid value: "Healthy" + * + * @schema io.k8s.api.core.v1.ComponentCondition#type + */ + readonly type: string; + +} + +/** + * EndpointSubset is a group of addresses with a common set of ports. The expanded set of endpoints is the Cartesian product of Addresses x Ports. For example, given: + { + Addresses: [{"ip": "10.10.1.1"}, {"ip": "10.10.2.2"}], + Ports: [{"name": "a", "port": 8675}, {"name": "b", "port": 309}] + } +The resulting set of endpoints can be viewed as: + a: [ 10.10.1.1:8675, 10.10.2.2:8675 ], + b: [ 10.10.1.1:309, 10.10.2.2:309 ] + * + * @schema io.k8s.api.core.v1.EndpointSubset + */ +export interface EndpointSubset { + /** + * IP addresses which offer the related ports that are marked as ready. These endpoints should be considered safe for load balancers and clients to utilize. + * + * @schema io.k8s.api.core.v1.EndpointSubset#addresses + */ + readonly addresses?: EndpointAddress[]; + + /** + * IP addresses which offer the related ports but are not currently marked as ready because they have not yet finished starting, have recently failed a readiness check, or have recently failed a liveness check. + * + * @schema io.k8s.api.core.v1.EndpointSubset#notReadyAddresses + */ + readonly notReadyAddresses?: EndpointAddress[]; + + /** + * Port numbers available on the related IP addresses. + * + * @schema io.k8s.api.core.v1.EndpointSubset#ports + */ + readonly ports?: EndpointPort[]; + +} + +/** + * EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time. + * + * @schema io.k8s.api.events.v1beta1.EventSeries + */ +export interface EventSeries { + /** + * Number of occurrences in this series up to the last heartbeat time + * + * @schema io.k8s.api.events.v1beta1.EventSeries#count + */ + readonly count: number; + + /** + * Time when last Event from the series was seen before last heartbeat. + * + * @schema io.k8s.api.events.v1beta1.EventSeries#lastObservedTime + */ + readonly lastObservedTime: Date; + + /** + * Information whether this series is ongoing or finished. Deprecated. Planned removal for 1.18 + * + * @schema io.k8s.api.events.v1beta1.EventSeries#state + */ + readonly state: string; + +} + +/** + * EventSource contains information for an event. + * + * @schema io.k8s.api.core.v1.EventSource + */ +export interface EventSource { + /** + * Component from which the event is generated. + * + * @schema io.k8s.api.core.v1.EventSource#component + */ + readonly component?: string; + + /** + * Node name on which the event is generated. + * + * @schema io.k8s.api.core.v1.EventSource#host + */ + readonly host?: string; + +} + +/** + * LimitRangeSpec defines a min/max usage limit for resources that match on kind. + * + * @schema io.k8s.api.core.v1.LimitRangeSpec + */ +export interface LimitRangeSpec { + /** + * Limits is the list of LimitRangeItem objects that are enforced. + * + * @schema io.k8s.api.core.v1.LimitRangeSpec#limits + */ + readonly limits: LimitRangeItem[]; + +} + +/** + * NamespaceSpec describes the attributes on a Namespace. + * + * @schema io.k8s.api.core.v1.NamespaceSpec + */ +export interface NamespaceSpec { + /** + * Finalizers is an opaque list of values that must be empty to permanently remove object from storage. More info: https://kubernetes.io/docs/tasks/administer-cluster/namespaces/ + * + * @schema io.k8s.api.core.v1.NamespaceSpec#finalizers + */ + readonly finalizers?: string[]; + +} + +/** + * NodeSpec describes the attributes that a node is created with. + * + * @schema io.k8s.api.core.v1.NodeSpec + */ +export interface NodeSpec { + /** + * If specified, the source to get node configuration from The DynamicKubeletConfig feature gate must be enabled for the Kubelet to use this field + * + * @schema io.k8s.api.core.v1.NodeSpec#configSource + */ + readonly configSource?: NodeConfigSource; + + /** + * Deprecated. Not all kubelets will set this field. Remove field after 1.13. see: https://issues.k8s.io/61966 + * + * @schema io.k8s.api.core.v1.NodeSpec#externalID + */ + readonly externalID?: string; + + /** + * PodCIDR represents the pod IP range assigned to the node. + * + * @schema io.k8s.api.core.v1.NodeSpec#podCIDR + */ + readonly podCIDR?: string; + + /** + * ID of the node assigned by the cloud provider in the format: :// + * + * @schema io.k8s.api.core.v1.NodeSpec#providerID + */ + readonly providerID?: string; + + /** + * If specified, the node's taints. + * + * @schema io.k8s.api.core.v1.NodeSpec#taints + */ + readonly taints?: Taint[]; + + /** + * Unschedulable controls node schedulability of new pods. By default, node is schedulable. More info: https://kubernetes.io/docs/concepts/nodes/node/#manual-node-administration + * + * @schema io.k8s.api.core.v1.NodeSpec#unschedulable + */ + readonly unschedulable?: boolean; + +} + +/** + * PersistentVolumeSpec is the specification of a persistent volume. + * + * @schema io.k8s.api.core.v1.PersistentVolumeSpec + */ +export interface PersistentVolumeSpec { + /** + * AccessModes contains all ways the volume can be mounted. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes + * + * @schema io.k8s.api.core.v1.PersistentVolumeSpec#accessModes + */ + readonly accessModes?: string[]; + + /** + * AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore + * + * @schema io.k8s.api.core.v1.PersistentVolumeSpec#awsElasticBlockStore + */ + readonly awsElasticBlockStore?: AwsElasticBlockStoreVolumeSource; + + /** + * AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. + * + * @schema io.k8s.api.core.v1.PersistentVolumeSpec#azureDisk + */ + readonly azureDisk?: AzureDiskVolumeSource; + + /** + * AzureFile represents an Azure File Service mount on the host and bind mount to the pod. + * + * @schema io.k8s.api.core.v1.PersistentVolumeSpec#azureFile + */ + readonly azureFile?: AzureFilePersistentVolumeSource; + + /** + * A description of the persistent volume's resources and capacity. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity + * + * @schema io.k8s.api.core.v1.PersistentVolumeSpec#capacity + */ + readonly capacity?: { [key: string]: Quantity }; + + /** + * CephFS represents a Ceph FS mount on the host that shares a pod's lifetime + * + * @schema io.k8s.api.core.v1.PersistentVolumeSpec#cephfs + */ + readonly cephfs?: CephFsPersistentVolumeSource; + + /** + * Cinder represents a cinder volume attached and mounted on kubelets host machine More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md + * + * @schema io.k8s.api.core.v1.PersistentVolumeSpec#cinder + */ + readonly cinder?: CinderPersistentVolumeSource; + + /** + * ClaimRef is part of a bi-directional binding between PersistentVolume and PersistentVolumeClaim. Expected to be non-nil when bound. claim.VolumeName is the authoritative bind between PV and PVC. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#binding + * + * @schema io.k8s.api.core.v1.PersistentVolumeSpec#claimRef + */ + readonly claimRef?: ObjectReference; + + /** + * CSI represents storage that is handled by an external CSI driver (Beta feature). + * + * @schema io.k8s.api.core.v1.PersistentVolumeSpec#csi + */ + readonly csi?: CsiPersistentVolumeSource; + + /** + * FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod. + * + * @schema io.k8s.api.core.v1.PersistentVolumeSpec#fc + */ + readonly fc?: FcVolumeSource; + + /** + * FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin. + * + * @schema io.k8s.api.core.v1.PersistentVolumeSpec#flexVolume + */ + readonly flexVolume?: FlexPersistentVolumeSource; + + /** + * Flocker represents a Flocker volume attached to a kubelet's host machine and exposed to the pod for its usage. This depends on the Flocker control service being running + * + * @schema io.k8s.api.core.v1.PersistentVolumeSpec#flocker + */ + readonly flocker?: FlockerVolumeSource; + + /** + * GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk + * + * @schema io.k8s.api.core.v1.PersistentVolumeSpec#gcePersistentDisk + */ + readonly gcePersistentDisk?: GcePersistentDiskVolumeSource; + + /** + * Glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod. Provisioned by an admin. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md + * + * @schema io.k8s.api.core.v1.PersistentVolumeSpec#glusterfs + */ + readonly glusterfs?: GlusterfsPersistentVolumeSource; + + /** + * HostPath represents a directory on the host. Provisioned by a developer or tester. This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath + * + * @schema io.k8s.api.core.v1.PersistentVolumeSpec#hostPath + */ + readonly hostPath?: HostPathVolumeSource; + + /** + * ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. + * + * @schema io.k8s.api.core.v1.PersistentVolumeSpec#iscsi + */ + readonly iscsi?: IscsiPersistentVolumeSource; + + /** + * Local represents directly-attached storage with node affinity + * + * @schema io.k8s.api.core.v1.PersistentVolumeSpec#local + */ + readonly local?: LocalVolumeSource; + + /** + * A list of mount options, e.g. ["ro", "soft"]. Not validated - mount will simply fail if one is invalid. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes/#mount-options + * + * @schema io.k8s.api.core.v1.PersistentVolumeSpec#mountOptions + */ + readonly mountOptions?: string[]; + + /** + * NFS represents an NFS mount on the host. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs + * + * @schema io.k8s.api.core.v1.PersistentVolumeSpec#nfs + */ + readonly nfs?: NfsVolumeSource; + + /** + * NodeAffinity defines constraints that limit what nodes this volume can be accessed from. This field influences the scheduling of pods that use this volume. + * + * @schema io.k8s.api.core.v1.PersistentVolumeSpec#nodeAffinity + */ + readonly nodeAffinity?: VolumeNodeAffinity; + + /** + * What happens to a persistent volume when released from its claim. Valid options are Retain (default for manually created PersistentVolumes), Delete (default for dynamically provisioned PersistentVolumes), and Recycle (deprecated). Recycle must be supported by the volume plugin underlying this PersistentVolume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#reclaiming + * + * @schema io.k8s.api.core.v1.PersistentVolumeSpec#persistentVolumeReclaimPolicy + */ + readonly persistentVolumeReclaimPolicy?: string; + + /** + * PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine + * + * @schema io.k8s.api.core.v1.PersistentVolumeSpec#photonPersistentDisk + */ + readonly photonPersistentDisk?: PhotonPersistentDiskVolumeSource; + + /** + * PortworxVolume represents a portworx volume attached and mounted on kubelets host machine + * + * @schema io.k8s.api.core.v1.PersistentVolumeSpec#portworxVolume + */ + readonly portworxVolume?: PortworxVolumeSource; + + /** + * Quobyte represents a Quobyte mount on the host that shares a pod's lifetime + * + * @schema io.k8s.api.core.v1.PersistentVolumeSpec#quobyte + */ + readonly quobyte?: QuobyteVolumeSource; + + /** + * RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md + * + * @schema io.k8s.api.core.v1.PersistentVolumeSpec#rbd + */ + readonly rbd?: RbdPersistentVolumeSource; + + /** + * ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes. + * + * @schema io.k8s.api.core.v1.PersistentVolumeSpec#scaleIO + */ + readonly scaleIO?: ScaleIoPersistentVolumeSource; + + /** + * Name of StorageClass to which this persistent volume belongs. Empty value means that this volume does not belong to any StorageClass. + * + * @schema io.k8s.api.core.v1.PersistentVolumeSpec#storageClassName + */ + readonly storageClassName?: string; + + /** + * StorageOS represents a StorageOS volume that is attached to the kubelet's host machine and mounted into the pod More info: https://releases.k8s.io/HEAD/examples/volumes/storageos/README.md + * + * @schema io.k8s.api.core.v1.PersistentVolumeSpec#storageos + */ + readonly storageos?: StorageOsPersistentVolumeSource; + + /** + * volumeMode defines if a volume is intended to be used with a formatted filesystem or to remain in raw block state. Value of Filesystem is implied when not included in spec. This is a beta feature. + * + * @schema io.k8s.api.core.v1.PersistentVolumeSpec#volumeMode + */ + readonly volumeMode?: string; + + /** + * VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine + * + * @schema io.k8s.api.core.v1.PersistentVolumeSpec#vsphereVolume + */ + readonly vsphereVolume?: VsphereVirtualDiskVolumeSource; + +} + +/** + * PersistentVolumeClaimSpec describes the common attributes of storage devices and allows a Source for provider-specific attributes + * + * @schema io.k8s.api.core.v1.PersistentVolumeClaimSpec + */ +export interface PersistentVolumeClaimSpec { + /** + * AccessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1 + * + * @schema io.k8s.api.core.v1.PersistentVolumeClaimSpec#accessModes + */ + readonly accessModes?: string[]; + + /** + * This field requires the VolumeSnapshotDataSource alpha feature gate to be enabled and currently VolumeSnapshot is the only supported data source. If the provisioner can support VolumeSnapshot data source, it will create a new volume and data will be restored to the volume at the same time. If the provisioner does not support VolumeSnapshot data source, volume will not be created and the failure will be reported as an event. In the future, we plan to support more data source types and the behavior of the provisioner may change. + * + * @schema io.k8s.api.core.v1.PersistentVolumeClaimSpec#dataSource + */ + readonly dataSource?: TypedLocalObjectReference; + + /** + * Resources represents the minimum resources the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources + * + * @schema io.k8s.api.core.v1.PersistentVolumeClaimSpec#resources + */ + readonly resources?: ResourceRequirements; + + /** + * A label query over volumes to consider for binding. + * + * @schema io.k8s.api.core.v1.PersistentVolumeClaimSpec#selector + */ + readonly selector?: LabelSelector; + + /** + * Name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1 + * + * @schema io.k8s.api.core.v1.PersistentVolumeClaimSpec#storageClassName + */ + readonly storageClassName?: string; + + /** + * volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec. This is a beta feature. + * + * @schema io.k8s.api.core.v1.PersistentVolumeClaimSpec#volumeMode + */ + readonly volumeMode?: string; + + /** + * VolumeName is the binding reference to the PersistentVolume backing this claim. + * + * @schema io.k8s.api.core.v1.PersistentVolumeClaimSpec#volumeName + */ + readonly volumeName?: string; + +} + +/** + * PodSpec is a description of a pod. + * + * @schema io.k8s.api.core.v1.PodSpec + */ +export interface PodSpec { + /** + * Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer. + * + * @schema io.k8s.api.core.v1.PodSpec#activeDeadlineSeconds + */ + readonly activeDeadlineSeconds?: number; + + /** + * If specified, the pod's scheduling constraints + * + * @schema io.k8s.api.core.v1.PodSpec#affinity + */ + readonly affinity?: Affinity; + + /** + * AutomountServiceAccountToken indicates whether a service account token should be automatically mounted. + * + * @schema io.k8s.api.core.v1.PodSpec#automountServiceAccountToken + */ + readonly automountServiceAccountToken?: boolean; + + /** + * List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated. + * + * @schema io.k8s.api.core.v1.PodSpec#containers + */ + readonly containers: Container[]; + + /** + * Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy. + * + * @schema io.k8s.api.core.v1.PodSpec#dnsConfig + */ + readonly dnsConfig?: PodDnsConfig; + + /** + * Set DNS policy for the pod. Defaults to "ClusterFirst". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'. + * + * @default ClusterFirst". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'. + * @schema io.k8s.api.core.v1.PodSpec#dnsPolicy + */ + readonly dnsPolicy?: string; + + /** + * EnableServiceLinks indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links. Optional: Defaults to true. + * + * @default true. + * @schema io.k8s.api.core.v1.PodSpec#enableServiceLinks + */ + readonly enableServiceLinks?: boolean; + + /** + * HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods. + * + * @schema io.k8s.api.core.v1.PodSpec#hostAliases + */ + readonly hostAliases?: HostAlias[]; + + /** + * Use the host's ipc namespace. Optional: Default to false. + * + * @default false. + * @schema io.k8s.api.core.v1.PodSpec#hostIPC + */ + readonly hostIPC?: boolean; + + /** + * Host networking requested for this pod. Use the host's network namespace. If this option is set, the ports that will be used must be specified. Default to false. + * + * @default false. + * @schema io.k8s.api.core.v1.PodSpec#hostNetwork + */ + readonly hostNetwork?: boolean; + + /** + * Use the host's pid namespace. Optional: Default to false. + * + * @default false. + * @schema io.k8s.api.core.v1.PodSpec#hostPID + */ + readonly hostPID?: boolean; + + /** + * Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value. + * + * @schema io.k8s.api.core.v1.PodSpec#hostname + */ + readonly hostname?: string; + + /** + * ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod + * + * @schema io.k8s.api.core.v1.PodSpec#imagePullSecrets + */ + readonly imagePullSecrets?: LocalObjectReference[]; + + /** + * List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, or Liveness probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/ + * + * @schema io.k8s.api.core.v1.PodSpec#initContainers + */ + readonly initContainers?: Container[]; + + /** + * NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements. + * + * @schema io.k8s.api.core.v1.PodSpec#nodeName + */ + readonly nodeName?: string; + + /** + * NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/ + * + * @schema io.k8s.api.core.v1.PodSpec#nodeSelector + */ + readonly nodeSelector?: { [key: string]: string }; + + /** + * PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is alpha-level and is only honored by servers that enable the NonPreemptingPriority feature. + * + * @default PreemptLowerPriority if unset. This field is alpha-level and is only honored by servers that enable the NonPreemptingPriority feature. + * @schema io.k8s.api.core.v1.PodSpec#preemptionPolicy + */ + readonly preemptionPolicy?: string; + + /** + * The priority value. Various system components use this field to find the priority of the pod. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority. + * + * @schema io.k8s.api.core.v1.PodSpec#priority + */ + readonly priority?: number; + + /** + * If specified, indicates the pod's priority. "system-node-critical" and "system-cluster-critical" are two special keywords which indicate the highest priorities with the former being the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default. + * + * @schema io.k8s.api.core.v1.PodSpec#priorityClassName + */ + readonly priorityClassName?: string; + + /** + * If specified, all readiness gates will be evaluated for pod readiness. A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to "True" More info: https://git.k8s.io/enhancements/keps/sig-network/0007-pod-ready%2B%2B.md + * + * @schema io.k8s.api.core.v1.PodSpec#readinessGates + */ + readonly readinessGates?: PodReadinessGate[]; + + /** + * Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy + * + * @default Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy + * @schema io.k8s.api.core.v1.PodSpec#restartPolicy + */ + readonly restartPolicy?: string; + + /** + * RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used to run this pod. If no RuntimeClass resource matches the named class, the pod will not be run. If unset or empty, the "legacy" RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler. More info: https://git.k8s.io/enhancements/keps/sig-node/runtime-class.md This is a beta feature as of Kubernetes v1.14. + * + * @schema io.k8s.api.core.v1.PodSpec#runtimeClassName + */ + readonly runtimeClassName?: string; + + /** + * If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler. + * + * @schema io.k8s.api.core.v1.PodSpec#schedulerName + */ + readonly schedulerName?: string; + + /** + * SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field. + * + * @default empty. See type description for default values of each field. + * @schema io.k8s.api.core.v1.PodSpec#securityContext + */ + readonly securityContext?: PodSecurityContext; + + /** + * DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead. + * + * @schema io.k8s.api.core.v1.PodSpec#serviceAccount + */ + readonly serviceAccount?: string; + + /** + * ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ + * + * @schema io.k8s.api.core.v1.PodSpec#serviceAccountName + */ + readonly serviceAccountName?: string; + + /** + * Share a single process namespace between all of the containers in a pod. When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1. HostPID and ShareProcessNamespace cannot both be set. Optional: Default to false. This field is beta-level and may be disabled with the PodShareProcessNamespace feature. + * + * @default false. This field is beta-level and may be disabled with the PodShareProcessNamespace feature. + * @schema io.k8s.api.core.v1.PodSpec#shareProcessNamespace + */ + readonly shareProcessNamespace?: boolean; + + /** + * If specified, the fully qualified Pod hostname will be "...svc.". If not specified, the pod will not have a domainname at all. + * + * @schema io.k8s.api.core.v1.PodSpec#subdomain + */ + readonly subdomain?: string; + + /** + * Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds. + * + * @default 30 seconds. + * @schema io.k8s.api.core.v1.PodSpec#terminationGracePeriodSeconds + */ + readonly terminationGracePeriodSeconds?: number; + + /** + * If specified, the pod's tolerations. + * + * @schema io.k8s.api.core.v1.PodSpec#tolerations + */ + readonly tolerations?: Toleration[]; + + /** + * List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes + * + * @schema io.k8s.api.core.v1.PodSpec#volumes + */ + readonly volumes?: Volume[]; + +} + +/** + * PodTemplateSpec describes the data a pod should have when created from a template + * + * @schema io.k8s.api.core.v1.PodTemplateSpec + */ +export interface PodTemplateSpec { + /** + * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.core.v1.PodTemplateSpec#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status + * + * @schema io.k8s.api.core.v1.PodTemplateSpec#spec + */ + readonly spec?: PodSpec; + +} + +/** + * ReplicationControllerSpec is the specification of a replication controller. + * + * @schema io.k8s.api.core.v1.ReplicationControllerSpec + */ +export interface ReplicationControllerSpec { + /** + * Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready) + * + * @default 0 (pod will be considered available as soon as it is ready) + * @schema io.k8s.api.core.v1.ReplicationControllerSpec#minReadySeconds + */ + readonly minReadySeconds?: number; + + /** + * Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller + * + * @default 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller + * @schema io.k8s.api.core.v1.ReplicationControllerSpec#replicas + */ + readonly replicas?: number; + + /** + * Selector is a label query over pods that should match the Replicas count. If Selector is empty, it is defaulted to the labels present on the Pod template. Label keys and values that must match in order to be controlled by this replication controller, if empty defaulted to labels on Pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors + * + * @schema io.k8s.api.core.v1.ReplicationControllerSpec#selector + */ + readonly selector?: { [key: string]: string }; + + /** + * Template is the object that describes the pod that will be created if insufficient replicas are detected. This takes precedence over a TemplateRef. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template + * + * @schema io.k8s.api.core.v1.ReplicationControllerSpec#template + */ + readonly template?: PodTemplateSpec; + +} + +/** + * ResourceQuotaSpec defines the desired hard limits to enforce for Quota. + * + * @schema io.k8s.api.core.v1.ResourceQuotaSpec + */ +export interface ResourceQuotaSpec { + /** + * hard is the set of desired hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/ + * + * @schema io.k8s.api.core.v1.ResourceQuotaSpec#hard + */ + readonly hard?: { [key: string]: Quantity }; + + /** + * scopeSelector is also a collection of filters like scopes that must match each object tracked by a quota but expressed using ScopeSelectorOperator in combination with possible values. For a resource to match, both scopes AND scopeSelector (if specified in spec), must be matched. + * + * @schema io.k8s.api.core.v1.ResourceQuotaSpec#scopeSelector + */ + readonly scopeSelector?: ScopeSelector; + + /** + * A collection of filters that must match each object tracked by a quota. If not specified, the quota matches all objects. + * + * @schema io.k8s.api.core.v1.ResourceQuotaSpec#scopes + */ + readonly scopes?: string[]; + +} + +/** + * ServiceSpec describes the attributes that a user creates on a service. + * + * @schema io.k8s.api.core.v1.ServiceSpec + */ +export interface ServiceSpec { + /** + * clusterIP is the IP address of the service and is usually assigned randomly by the master. If an address is specified manually and is not in use by others, it will be allocated to the service; otherwise, creation of the service will fail. This field can not be changed through updates. Valid values are "None", empty string (""), or a valid IP address. "None" can be specified for headless services when proxying is not required. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + * + * @schema io.k8s.api.core.v1.ServiceSpec#clusterIP + */ + readonly clusterIP?: string; + + /** + * externalIPs is a list of IP addresses for which nodes in the cluster will also accept traffic for this service. These IPs are not managed by Kubernetes. The user is responsible for ensuring that traffic arrives at a node with this IP. A common example is external load-balancers that are not part of the Kubernetes system. + * + * @schema io.k8s.api.core.v1.ServiceSpec#externalIPs + */ + readonly externalIPs?: string[]; + + /** + * externalName is the external reference that kubedns or equivalent will return as a CNAME record for this service. No proxying will be involved. Must be a valid RFC-1123 hostname (https://tools.ietf.org/html/rfc1123) and requires Type to be ExternalName. + * + * @schema io.k8s.api.core.v1.ServiceSpec#externalName + */ + readonly externalName?: string; + + /** + * externalTrafficPolicy denotes if this Service desires to route external traffic to node-local or cluster-wide endpoints. "Local" preserves the client source IP and avoids a second hop for LoadBalancer and Nodeport type services, but risks potentially imbalanced traffic spreading. "Cluster" obscures the client source IP and may cause a second hop to another node, but should have good overall load-spreading. + * + * @schema io.k8s.api.core.v1.ServiceSpec#externalTrafficPolicy + */ + readonly externalTrafficPolicy?: string; + + /** + * healthCheckNodePort specifies the healthcheck nodePort for the service. If not specified, HealthCheckNodePort is created by the service api backend with the allocated nodePort. Will use user-specified nodePort value if specified by the client. Only effects when Type is set to LoadBalancer and ExternalTrafficPolicy is set to Local. + * + * @schema io.k8s.api.core.v1.ServiceSpec#healthCheckNodePort + */ + readonly healthCheckNodePort?: number; + + /** + * Only applies to Service Type: LoadBalancer LoadBalancer will get created with the IP specified in this field. This feature depends on whether the underlying cloud-provider supports specifying the loadBalancerIP when a load balancer is created. This field will be ignored if the cloud-provider does not support the feature. + * + * @schema io.k8s.api.core.v1.ServiceSpec#loadBalancerIP + */ + readonly loadBalancerIP?: string; + + /** + * If specified and supported by the platform, this will restrict traffic through the cloud-provider load-balancer will be restricted to the specified client IPs. This field will be ignored if the cloud-provider does not support the feature." More info: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/ + * + * @schema io.k8s.api.core.v1.ServiceSpec#loadBalancerSourceRanges + */ + readonly loadBalancerSourceRanges?: string[]; + + /** + * The list of ports that are exposed by this service. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + * + * @schema io.k8s.api.core.v1.ServiceSpec#ports + */ + readonly ports?: ServicePort[]; + + /** + * publishNotReadyAddresses, when set to true, indicates that DNS implementations must publish the notReadyAddresses of subsets for the Endpoints associated with the Service. The default value is false. The primary use case for setting this field is to use a StatefulSet's Headless Service to propagate SRV records for its Pods without respect to their readiness for purpose of peer discovery. + * + * @schema io.k8s.api.core.v1.ServiceSpec#publishNotReadyAddresses + */ + readonly publishNotReadyAddresses?: boolean; + + /** + * Route service traffic to pods with label keys and values matching this selector. If empty or not present, the service is assumed to have an external process managing its endpoints, which Kubernetes will not modify. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: https://kubernetes.io/docs/concepts/services-networking/service/ + * + * @schema io.k8s.api.core.v1.ServiceSpec#selector + */ + readonly selector?: { [key: string]: string }; + + /** + * Supports "ClientIP" and "None". Used to maintain session affinity. Enable client IP based session affinity. Must be ClientIP or None. Defaults to None. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + * + * @default None. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + * @schema io.k8s.api.core.v1.ServiceSpec#sessionAffinity + */ + readonly sessionAffinity?: string; + + /** + * sessionAffinityConfig contains the configurations of session affinity. + * + * @schema io.k8s.api.core.v1.ServiceSpec#sessionAffinityConfig + */ + readonly sessionAffinityConfig?: SessionAffinityConfig; + + /** + * type determines how the Service is exposed. Defaults to ClusterIP. Valid options are ExternalName, ClusterIP, NodePort, and LoadBalancer. "ExternalName" maps to the specified externalName. "ClusterIP" allocates a cluster-internal IP address for load-balancing to endpoints. Endpoints are determined by the selector or if that is not specified, by manual construction of an Endpoints object. If clusterIP is "None", no virtual IP is allocated and the endpoints are published as a set of endpoints rather than a stable IP. "NodePort" builds on ClusterIP and allocates a port on every node which routes to the clusterIP. "LoadBalancer" builds on NodePort and creates an external load-balancer (if supported in the current cloud) which routes to the clusterIP. More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types + * + * @default ClusterIP. Valid options are ExternalName, ClusterIP, NodePort, and LoadBalancer. "ExternalName" maps to the specified externalName. "ClusterIP" allocates a cluster-internal IP address for load-balancing to endpoints. Endpoints are determined by the selector or if that is not specified, by manual construction of an Endpoints object. If clusterIP is "None", no virtual IP is allocated and the endpoints are published as a set of endpoints rather than a stable IP. "NodePort" builds on ClusterIP and allocates a port on every node which routes to the clusterIP. "LoadBalancer" builds on NodePort and creates an external load-balancer (if supported in the current cloud) which routes to the clusterIP. More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types + * @schema io.k8s.api.core.v1.ServiceSpec#type + */ + readonly type?: string; + +} + +/** + * LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace. + * + * @schema io.k8s.api.core.v1.LocalObjectReference + */ +export interface LocalObjectReference { + /** + * Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + * + * @schema io.k8s.api.core.v1.LocalObjectReference#name + */ + readonly name?: string; + +} + +/** + * IngressSpec describes the Ingress the user wishes to exist. + * + * @schema io.k8s.api.networking.v1beta1.IngressSpec + */ +export interface IngressSpec { + /** + * A default backend capable of servicing requests that don't match any rule. At least one of 'backend' or 'rules' must be specified. This field is optional to allow the loadbalancer controller or defaulting logic to specify a global default. + * + * @schema io.k8s.api.networking.v1beta1.IngressSpec#backend + */ + readonly backend?: IngressBackend; + + /** + * A list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend. + * + * @schema io.k8s.api.networking.v1beta1.IngressSpec#rules + */ + readonly rules?: IngressRule[]; + + /** + * TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI. + * + * @schema io.k8s.api.networking.v1beta1.IngressSpec#tls + */ + readonly tls?: IngressTls[]; + +} + +/** + * NetworkPolicySpec provides the specification of a NetworkPolicy + * + * @schema io.k8s.api.networking.v1.NetworkPolicySpec + */ +export interface NetworkPolicySpec { + /** + * List of egress rules to be applied to the selected pods. Outgoing traffic is allowed if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic matches at least one egress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy limits all outgoing traffic (and serves solely to ensure that the pods it selects are isolated by default). This field is beta-level in 1.8 + * + * @schema io.k8s.api.networking.v1.NetworkPolicySpec#egress + */ + readonly egress?: NetworkPolicyEgressRule[]; + + /** + * List of ingress rules to be applied to the selected pods. Traffic is allowed to a pod if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic source is the pod's local node, OR if the traffic matches at least one ingress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy does not allow any traffic (and serves solely to ensure that the pods it selects are isolated by default) + * + * @schema io.k8s.api.networking.v1.NetworkPolicySpec#ingress + */ + readonly ingress?: NetworkPolicyIngressRule[]; + + /** + * Selects the pods to which this NetworkPolicy object applies. The array of ingress rules is applied to any pods selected by this field. Multiple network policies can select the same set of pods. In this case, the ingress rules for each are combined additively. This field is NOT optional and follows standard label selector semantics. An empty podSelector matches all pods in this namespace. + * + * @schema io.k8s.api.networking.v1.NetworkPolicySpec#podSelector + */ + readonly podSelector: LabelSelector; + + /** + * List of rule types that the NetworkPolicy relates to. Valid options are "Ingress", "Egress", or "Ingress,Egress". If this field is not specified, it will default based on the existence of Ingress or Egress rules; policies that contain an Egress section are assumed to affect Egress, and all policies (whether or not they contain an Ingress section) are assumed to affect Ingress. If you want to write an egress-only policy, you must explicitly specify policyTypes [ "Egress" ]. Likewise, if you want to write a policy that specifies that no egress is allowed, you must specify a policyTypes value that include "Egress" (since such a policy would not include an Egress section and would otherwise default to just [ "Ingress" ]). This field is beta-level in 1.8 + * + * @schema io.k8s.api.networking.v1.NetworkPolicySpec#policyTypes + */ + readonly policyTypes?: string[]; + +} + +/** + * PodSecurityPolicySpec defines the policy enforced. + * + * @schema io.k8s.api.policy.v1beta1.PodSecurityPolicySpec + */ +export interface PodSecurityPolicySpec { + /** + * allowPrivilegeEscalation determines if a pod can request to allow privilege escalation. If unspecified, defaults to true. + * + * @schema io.k8s.api.policy.v1beta1.PodSecurityPolicySpec#allowPrivilegeEscalation + */ + readonly allowPrivilegeEscalation?: boolean; + + /** + * AllowedCSIDrivers is a whitelist of inline CSI drivers that must be explicitly set to be embedded within a pod spec. An empty value indicates that any CSI driver can be used for inline ephemeral volumes. This is an alpha field, and is only honored if the API server enables the CSIInlineVolume feature gate. + * + * @schema io.k8s.api.policy.v1beta1.PodSecurityPolicySpec#allowedCSIDrivers + */ + readonly allowedCSIDrivers?: AllowedCsiDriver[]; + + /** + * allowedCapabilities is a list of capabilities that can be requested to add to the container. Capabilities in this field may be added at the pod author's discretion. You must not list a capability in both allowedCapabilities and requiredDropCapabilities. + * + * @schema io.k8s.api.policy.v1beta1.PodSecurityPolicySpec#allowedCapabilities + */ + readonly allowedCapabilities?: string[]; + + /** + * allowedFlexVolumes is a whitelist of allowed Flexvolumes. Empty or nil indicates that all Flexvolumes may be used. This parameter is effective only when the usage of the Flexvolumes is allowed in the "volumes" field. + * + * @schema io.k8s.api.policy.v1beta1.PodSecurityPolicySpec#allowedFlexVolumes + */ + readonly allowedFlexVolumes?: AllowedFlexVolume[]; + + /** + * allowedHostPaths is a white list of allowed host paths. Empty indicates that all host paths may be used. + * + * @schema io.k8s.api.policy.v1beta1.PodSecurityPolicySpec#allowedHostPaths + */ + readonly allowedHostPaths?: AllowedHostPath[]; + + /** + * AllowedProcMountTypes is a whitelist of allowed ProcMountTypes. Empty or nil indicates that only the DefaultProcMountType may be used. This requires the ProcMountType feature flag to be enabled. + * + * @schema io.k8s.api.policy.v1beta1.PodSecurityPolicySpec#allowedProcMountTypes + */ + readonly allowedProcMountTypes?: string[]; + + /** + * allowedUnsafeSysctls is a list of explicitly allowed unsafe sysctls, defaults to none. Each entry is either a plain sysctl name or ends in "*" in which case it is considered as a prefix of allowed sysctls. Single * means all unsafe sysctls are allowed. Kubelet has to whitelist all allowed unsafe sysctls explicitly to avoid rejection. + +Examples: e.g. "foo/*" allows "foo/bar", "foo/baz", etc. e.g. "foo.*" allows "foo.bar", "foo.baz", etc. + * + * @schema io.k8s.api.policy.v1beta1.PodSecurityPolicySpec#allowedUnsafeSysctls + */ + readonly allowedUnsafeSysctls?: string[]; + + /** + * defaultAddCapabilities is the default set of capabilities that will be added to the container unless the pod spec specifically drops the capability. You may not list a capability in both defaultAddCapabilities and requiredDropCapabilities. Capabilities added here are implicitly allowed, and need not be included in the allowedCapabilities list. + * + * @schema io.k8s.api.policy.v1beta1.PodSecurityPolicySpec#defaultAddCapabilities + */ + readonly defaultAddCapabilities?: string[]; + + /** + * defaultAllowPrivilegeEscalation controls the default setting for whether a process can gain more privileges than its parent process. + * + * @schema io.k8s.api.policy.v1beta1.PodSecurityPolicySpec#defaultAllowPrivilegeEscalation + */ + readonly defaultAllowPrivilegeEscalation?: boolean; + + /** + * forbiddenSysctls is a list of explicitly forbidden sysctls, defaults to none. Each entry is either a plain sysctl name or ends in "*" in which case it is considered as a prefix of forbidden sysctls. Single * means all sysctls are forbidden. + +Examples: e.g. "foo/*" forbids "foo/bar", "foo/baz", etc. e.g. "foo.*" forbids "foo.bar", "foo.baz", etc. + * + * @schema io.k8s.api.policy.v1beta1.PodSecurityPolicySpec#forbiddenSysctls + */ + readonly forbiddenSysctls?: string[]; + + /** + * fsGroup is the strategy that will dictate what fs group is used by the SecurityContext. + * + * @schema io.k8s.api.policy.v1beta1.PodSecurityPolicySpec#fsGroup + */ + readonly fsGroup: FsGroupStrategyOptions; + + /** + * hostIPC determines if the policy allows the use of HostIPC in the pod spec. + * + * @schema io.k8s.api.policy.v1beta1.PodSecurityPolicySpec#hostIPC + */ + readonly hostIPC?: boolean; + + /** + * hostNetwork determines if the policy allows the use of HostNetwork in the pod spec. + * + * @schema io.k8s.api.policy.v1beta1.PodSecurityPolicySpec#hostNetwork + */ + readonly hostNetwork?: boolean; + + /** + * hostPID determines if the policy allows the use of HostPID in the pod spec. + * + * @schema io.k8s.api.policy.v1beta1.PodSecurityPolicySpec#hostPID + */ + readonly hostPID?: boolean; + + /** + * hostPorts determines which host port ranges are allowed to be exposed. + * + * @schema io.k8s.api.policy.v1beta1.PodSecurityPolicySpec#hostPorts + */ + readonly hostPorts?: HostPortRange[]; + + /** + * privileged determines if a pod can request to be run as privileged. + * + * @schema io.k8s.api.policy.v1beta1.PodSecurityPolicySpec#privileged + */ + readonly privileged?: boolean; + + /** + * readOnlyRootFilesystem when set to true will force containers to run with a read only root file system. If the container specifically requests to run with a non-read only root file system the PSP should deny the pod. If set to false the container may run with a read only root file system if it wishes but it will not be forced to. + * + * @schema io.k8s.api.policy.v1beta1.PodSecurityPolicySpec#readOnlyRootFilesystem + */ + readonly readOnlyRootFilesystem?: boolean; + + /** + * requiredDropCapabilities are the capabilities that will be dropped from the container. These are required to be dropped and cannot be added. + * + * @schema io.k8s.api.policy.v1beta1.PodSecurityPolicySpec#requiredDropCapabilities + */ + readonly requiredDropCapabilities?: string[]; + + /** + * RunAsGroup is the strategy that will dictate the allowable RunAsGroup values that may be set. If this field is omitted, the pod's RunAsGroup can take any value. This field requires the RunAsGroup feature gate to be enabled. + * + * @schema io.k8s.api.policy.v1beta1.PodSecurityPolicySpec#runAsGroup + */ + readonly runAsGroup?: RunAsGroupStrategyOptions; + + /** + * runAsUser is the strategy that will dictate the allowable RunAsUser values that may be set. + * + * @schema io.k8s.api.policy.v1beta1.PodSecurityPolicySpec#runAsUser + */ + readonly runAsUser: RunAsUserStrategyOptions; + + /** + * runtimeClass is the strategy that will dictate the allowable RuntimeClasses for a pod. If this field is omitted, the pod's runtimeClassName field is unrestricted. Enforcement of this field depends on the RuntimeClass feature gate being enabled. + * + * @schema io.k8s.api.policy.v1beta1.PodSecurityPolicySpec#runtimeClass + */ + readonly runtimeClass?: RuntimeClassStrategyOptions; + + /** + * seLinux is the strategy that will dictate the allowable labels that may be set. + * + * @schema io.k8s.api.policy.v1beta1.PodSecurityPolicySpec#seLinux + */ + readonly seLinux: SeLinuxStrategyOptions; + + /** + * supplementalGroups is the strategy that will dictate what supplemental groups are used by the SecurityContext. + * + * @schema io.k8s.api.policy.v1beta1.PodSecurityPolicySpec#supplementalGroups + */ + readonly supplementalGroups: SupplementalGroupsStrategyOptions; + + /** + * volumes is a white list of allowed volume plugins. Empty indicates that no volumes may be used. To allow all volumes you may use '*'. + * + * @schema io.k8s.api.policy.v1beta1.PodSecurityPolicySpec#volumes + */ + readonly volumes?: string[]; + +} + +/** + * RuntimeClassSpec is a specification of a RuntimeClass. It contains parameters that are required to describe the RuntimeClass to the Container Runtime Interface (CRI) implementation, as well as any other components that need to understand how the pod will be run. The RuntimeClassSpec is immutable. + * + * @schema io.k8s.api.node.v1alpha1.RuntimeClassSpec + */ +export interface RuntimeClassSpec { + /** + * RuntimeHandler specifies the underlying runtime and configuration that the CRI implementation will use to handle pods of this class. The possible values are specific to the node & CRI configuration. It is assumed that all handlers are available on every node, and handlers of the same name are equivalent on every node. For example, a handler called "runc" might specify that the runc OCI runtime (using native Linux containers) will be used to run the containers in a pod. The RuntimeHandler must conform to the DNS Label (RFC 1123) requirements and is immutable. + * + * @schema io.k8s.api.node.v1alpha1.RuntimeClassSpec#runtimeHandler + */ + readonly runtimeHandler: string; + +} + +/** + * DeleteOptions may be provided when deleting an API object. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions + */ +export interface DeleteOptions { + /** + * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions#apiVersion + */ + readonly apiVersion?: string; + + /** + * When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions#dryRun + */ + readonly dryRun?: string[]; + + /** + * The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. + * + * @default a per object value if not specified. zero means delete immediately. + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions#gracePeriodSeconds + */ + readonly gracePeriodSeconds?: number; + + /** + * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions#kind + */ + readonly kind?: IoK8SApimachineryPkgApisMetaV1DeleteOptionsKind; + + /** + * Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions#orphanDependents + */ + readonly orphanDependents?: boolean; + + /** + * Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions#preconditions + */ + readonly preconditions?: Preconditions; + + /** + * Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions#propagationPolicy + */ + readonly propagationPolicy?: string; + +} + +/** + * PodDisruptionBudgetSpec is a description of a PodDisruptionBudget. + * + * @schema io.k8s.api.policy.v1beta1.PodDisruptionBudgetSpec + */ +export interface PodDisruptionBudgetSpec { + /** + * An eviction is allowed if at most "maxUnavailable" pods selected by "selector" are unavailable after the eviction, i.e. even in absence of the evicted pod. For example, one can prevent all voluntary evictions by specifying 0. This is a mutually exclusive setting with "minAvailable". + * + * @schema io.k8s.api.policy.v1beta1.PodDisruptionBudgetSpec#maxUnavailable + */ + readonly maxUnavailable?: IntOrString; + + /** + * An eviction is allowed if at least "minAvailable" pods selected by "selector" will still be available after the eviction, i.e. even in the absence of the evicted pod. So for example you can prevent all voluntary evictions by specifying "100%". + * + * @schema io.k8s.api.policy.v1beta1.PodDisruptionBudgetSpec#minAvailable + */ + readonly minAvailable?: IntOrString; + + /** + * Label query over pods whose evictions are managed by the disruption budget. + * + * @schema io.k8s.api.policy.v1beta1.PodDisruptionBudgetSpec#selector + */ + readonly selector?: LabelSelector; + +} + +/** + * AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole + * + * @schema io.k8s.api.rbac.v1beta1.AggregationRule + */ +export interface AggregationRule { + /** + * ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules. If any of the selectors match, then the ClusterRole's permissions will be added + * + * @schema io.k8s.api.rbac.v1beta1.AggregationRule#clusterRoleSelectors + */ + readonly clusterRoleSelectors?: LabelSelector[]; + +} + +/** + * PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to. + * + * @schema io.k8s.api.rbac.v1beta1.PolicyRule + */ +export interface PolicyRule { + /** + * APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed. + * + * @schema io.k8s.api.rbac.v1beta1.PolicyRule#apiGroups + */ + readonly apiGroups?: string[]; + + /** + * NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as "pods" or "secrets") or non-resource URL paths (such as "/api"), but not both. + * + * @schema io.k8s.api.rbac.v1beta1.PolicyRule#nonResourceURLs + */ + readonly nonResourceURLs?: string[]; + + /** + * ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed. + * + * @schema io.k8s.api.rbac.v1beta1.PolicyRule#resourceNames + */ + readonly resourceNames?: string[]; + + /** + * Resources is a list of resources this rule applies to. '*' represents all resources in the specified apiGroups. '_/foo' represents the subresource 'foo' for all resources in the specified apiGroups. + * + * @schema io.k8s.api.rbac.v1beta1.PolicyRule#resources + */ + readonly resources?: string[]; + + /** + * Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule. VerbAll represents all kinds. + * + * @schema io.k8s.api.rbac.v1beta1.PolicyRule#verbs + */ + readonly verbs: string[]; + +} + +/** + * RoleRef contains information that points to the role being used + * + * @schema io.k8s.api.rbac.v1beta1.RoleRef + */ +export interface RoleRef { + /** + * APIGroup is the group for the resource being referenced + * + * @schema io.k8s.api.rbac.v1beta1.RoleRef#apiGroup + */ + readonly apiGroup: string; + + /** + * Kind is the type of resource being referenced + * + * @schema io.k8s.api.rbac.v1beta1.RoleRef#kind + */ + readonly kind: string; + + /** + * Name is the name of resource being referenced + * + * @schema io.k8s.api.rbac.v1beta1.RoleRef#name + */ + readonly name: string; + +} + +/** + * Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names. + * + * @schema io.k8s.api.rbac.v1beta1.Subject + */ +export interface Subject { + /** + * APIGroup holds the API group of the referenced subject. Defaults to "" for ServiceAccount subjects. Defaults to "rbac.authorization.k8s.io" for User and Group subjects. + * + * @default for ServiceAccount subjects. Defaults to "rbac.authorization.k8s.io" for User and Group subjects. + * @schema io.k8s.api.rbac.v1beta1.Subject#apiGroup + */ + readonly apiGroup?: string; + + /** + * Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount". If the Authorizer does not recognized the kind value, the Authorizer should report an error. + * + * @schema io.k8s.api.rbac.v1beta1.Subject#kind + */ + readonly kind: string; + + /** + * Name of the object being referenced. + * + * @schema io.k8s.api.rbac.v1beta1.Subject#name + */ + readonly name: string; + + /** + * Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty the Authorizer should report an error. + * + * @schema io.k8s.api.rbac.v1beta1.Subject#namespace + */ + readonly namespace?: string; + +} + +/** + * PodPresetSpec is a description of a pod preset. + * + * @schema io.k8s.api.settings.v1alpha1.PodPresetSpec + */ +export interface PodPresetSpec { + /** + * Env defines the collection of EnvVar to inject into containers. + * + * @schema io.k8s.api.settings.v1alpha1.PodPresetSpec#env + */ + readonly env?: EnvVar[]; + + /** + * EnvFrom defines the collection of EnvFromSource to inject into containers. + * + * @schema io.k8s.api.settings.v1alpha1.PodPresetSpec#envFrom + */ + readonly envFrom?: EnvFromSource[]; + + /** + * Selector is a label query over a set of resources, in this case pods. Required. + * + * @schema io.k8s.api.settings.v1alpha1.PodPresetSpec#selector + */ + readonly selector?: LabelSelector; + + /** + * VolumeMounts defines the collection of VolumeMount to inject into containers. + * + * @schema io.k8s.api.settings.v1alpha1.PodPresetSpec#volumeMounts + */ + readonly volumeMounts?: VolumeMount[]; + + /** + * Volumes defines the collection of Volume to inject into the pod. + * + * @schema io.k8s.api.settings.v1alpha1.PodPresetSpec#volumes + */ + readonly volumes?: Volume[]; + +} + +/** + * A topology selector term represents the result of label queries. A null or empty topology selector term matches no objects. The requirements of them are ANDed. It provides a subset of functionality as NodeSelectorTerm. This is an alpha feature and may change in the future. + * + * @schema io.k8s.api.core.v1.TopologySelectorTerm + */ +export interface TopologySelectorTerm { + /** + * A list of topology selector requirements by labels. + * + * @schema io.k8s.api.core.v1.TopologySelectorTerm#matchLabelExpressions + */ + readonly matchLabelExpressions?: TopologySelectorLabelRequirement[]; + +} + +/** + * VolumeAttachmentSpec is the specification of a VolumeAttachment request. + * + * @schema io.k8s.api.storage.v1beta1.VolumeAttachmentSpec + */ +export interface VolumeAttachmentSpec { + /** + * Attacher indicates the name of the volume driver that MUST handle this request. This is the name returned by GetPluginName(). + * + * @schema io.k8s.api.storage.v1beta1.VolumeAttachmentSpec#attacher + */ + readonly attacher: string; + + /** + * The node that the volume should be attached to. + * + * @schema io.k8s.api.storage.v1beta1.VolumeAttachmentSpec#nodeName + */ + readonly nodeName: string; + + /** + * Source represents the volume that should be attached. + * + * @schema io.k8s.api.storage.v1beta1.VolumeAttachmentSpec#source + */ + readonly source: VolumeAttachmentSource; + +} + +/** + * CSIDriverSpec is the specification of a CSIDriver. + * + * @schema io.k8s.api.storage.v1beta1.CSIDriverSpec + */ +export interface CsiDriverSpec { + /** + * attachRequired indicates this CSI volume driver requires an attach operation (because it implements the CSI ControllerPublishVolume() method), and that the Kubernetes attach detach controller should call the attach volume interface which checks the volumeattachment status and waits until the volume is attached before proceeding to mounting. The CSI external-attacher coordinates with CSI volume driver and updates the volumeattachment status when the attach operation is complete. If the CSIDriverRegistry feature gate is enabled and the value is specified to false, the attach operation will be skipped. Otherwise the attach operation will be called. + * + * @schema io.k8s.api.storage.v1beta1.CSIDriverSpec#attachRequired + */ + readonly attachRequired?: boolean; + + /** + * If set to true, podInfoOnMount indicates this CSI volume driver requires additional pod information (like podName, podUID, etc.) during mount operations. If set to false, pod information will not be passed on mount. Default is false. The CSI driver specifies podInfoOnMount as part of driver deployment. If true, Kubelet will pass pod information as VolumeContext in the CSI NodePublishVolume() calls. The CSI driver is responsible for parsing and validating the information passed in as VolumeContext. The following VolumeConext will be passed if podInfoOnMount is set to true. This list might grow, but the prefix will be used. "csi.storage.k8s.io/pod.name": pod.Name "csi.storage.k8s.io/pod.namespace": pod.Namespace "csi.storage.k8s.io/pod.uid": string(pod.UID) + * + * @default false. The CSI driver specifies podInfoOnMount as part of driver deployment. If true, Kubelet will pass pod information as VolumeContext in the CSI NodePublishVolume() calls. The CSI driver is responsible for parsing and validating the information passed in as VolumeContext. The following VolumeConext will be passed if podInfoOnMount is set to true. This list might grow, but the prefix will be used. "csi.storage.k8s.io/pod.name": pod.Name "csi.storage.k8s.io/pod.namespace": pod.Namespace "csi.storage.k8s.io/pod.uid": string(pod.UID) + * @schema io.k8s.api.storage.v1beta1.CSIDriverSpec#podInfoOnMount + */ + readonly podInfoOnMount?: boolean; + +} + +/** + * CSINodeSpec holds information about the specification of all CSI drivers installed on a node + * + * @schema io.k8s.api.storage.v1beta1.CSINodeSpec + */ +export interface CsiNodeSpec { + /** + * drivers is a list of information of all CSI Drivers existing on a node. If all drivers in the list are uninstalled, this can become empty. + * + * @schema io.k8s.api.storage.v1beta1.CSINodeSpec#drivers + */ + readonly drivers: CsiNodeDriver[]; + +} + +/** + * CustomResourceDefinitionSpec describes how a user wants their resource to appear + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionSpec + */ +export interface CustomResourceDefinitionSpec { + /** + * AdditionalPrinterColumns are additional columns shown e.g. in kubectl next to the name. Defaults to a created-at column. Optional, the global columns for all versions. Top-level and per-version columns are mutually exclusive. + * + * @default a created-at column. Optional, the global columns for all versions. Top-level and per-version columns are mutually exclusive. + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionSpec#additionalPrinterColumns + */ + readonly additionalPrinterColumns?: CustomResourceColumnDefinition[]; + + /** + * `conversion` defines conversion settings for the CRD. + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionSpec#conversion + */ + readonly conversion?: CustomResourceConversion; + + /** + * Group is the group this resource belongs in + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionSpec#group + */ + readonly group: string; + + /** + * Names are the names used to describe this custom resource + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionSpec#names + */ + readonly names: CustomResourceDefinitionNames; + + /** + * preserveUnknownFields disables pruning of object fields which are not specified in the OpenAPI schema. apiVersion, kind, metadata and known fields inside metadata are always preserved. Defaults to true in v1beta and will default to false in v1. + * + * @default true in v1beta and will default to false in v1. + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionSpec#preserveUnknownFields + */ + readonly preserveUnknownFields?: boolean; + + /** + * Scope indicates whether this resource is cluster or namespace scoped. Default is namespaced + * + * @default namespaced + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionSpec#scope + */ + readonly scope: string; + + /** + * Subresources describes the subresources for CustomResource Optional, the global subresources for all versions. Top-level and per-version subresources are mutually exclusive. + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionSpec#subresources + */ + readonly subresources?: CustomResourceSubresources; + + /** + * Validation describes the validation methods for CustomResources Optional, the global validation schema for all versions. Top-level and per-version schemas are mutually exclusive. + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionSpec#validation + */ + readonly validation?: CustomResourceValidation; + + /** + * Version is the version this resource belongs in Should be always first item in Versions field if provided. Optional, but at least one of Version or Versions must be set. Deprecated: Please use `Versions`. + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionSpec#version + */ + readonly version?: string; + + /** + * Versions is the list of all supported versions for this resource. If Version field is provided, this field is optional. Validation: All versions must use the same validation schema for now. i.e., top level Validation field is applied to all of these versions. Order: The version name will be used to compute the order. If the version string is "kube-like", it will sort above non "kube-like" version strings, which are ordered lexicographically. "Kube-like" versions start with a "v", then are followed by a number (the major version), then optionally the string "alpha" or "beta" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10. + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionSpec#versions + */ + readonly versions?: CustomResourceDefinitionVersion[]; + +} + +/** + * StatusDetails is a set of additional properties that MAY be set by the server to provide additional information about a response. The Reason field of a Status object defines what attributes will be set. Clients must ignore fields that do not match the defined type of each attribute, and should assume that any attribute may be empty, invalid, or under defined. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails + */ +export interface StatusDetails { + /** + * The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails#causes + */ + readonly causes?: StatusCause[]; + + /** + * The group attribute of the resource associated with the status StatusReason. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails#group + */ + readonly group?: string; + + /** + * The kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails#kind + */ + readonly kind?: string; + + /** + * The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described). + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails#name + */ + readonly name?: string; + + /** + * If specified, the time in seconds before the operation should be retried. Some errors may indicate the client must take an alternate action - for those errors this field may indicate how long to wait before taking the alternate action. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails#retryAfterSeconds + */ + readonly retryAfterSeconds?: number; + + /** + * UID of the resource. (when there is a single resource which can be described). More info: http://kubernetes.io/docs/user-guide/identifiers#uids + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails#uid + */ + readonly uid?: string; + +} + +/** + * APIServiceSpec contains information for locating and communicating with a server. Only https is supported, though you are able to disable certificate verification. + * + * @schema io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceSpec + */ +export interface ApiServiceSpec { + /** + * CABundle is a PEM encoded CA bundle which will be used to validate an API server's serving certificate. If unspecified, system trust roots on the apiserver are used. + * + * @schema io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceSpec#caBundle + */ + readonly caBundle?: string; + + /** + * Group is the API group name this server hosts + * + * @schema io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceSpec#group + */ + readonly group?: string; + + /** + * GroupPriorityMininum is the priority this group should have at least. Higher priority means that the group is preferred by clients over lower priority ones. Note that other versions of this group might specify even higher GroupPriorityMininum values such that the whole group gets a higher priority. The primary sort is based on GroupPriorityMinimum, ordered highest number to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) We'd recommend something like: *.k8s.io (except extensions) at 18000 and PaaSes (OpenShift, Deis) are recommended to be in the 2000s + * + * @schema io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceSpec#groupPriorityMinimum + */ + readonly groupPriorityMinimum: number; + + /** + * InsecureSkipTLSVerify disables TLS certificate verification when communicating with this server. This is strongly discouraged. You should use the CABundle instead. + * + * @schema io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceSpec#insecureSkipTLSVerify + */ + readonly insecureSkipTLSVerify?: boolean; + + /** + * Service is a reference to the service for this API server. It must communicate on port 443 If the Service is nil, that means the handling for the API groupversion is handled locally on this server. The call will simply delegate to the normal handler chain to be fulfilled. + * + * @schema io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceSpec#service + */ + readonly service: ServiceReference; + + /** + * Version is the API version this server hosts. For example, "v1" + * + * @schema io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceSpec#version + */ + readonly version?: string; + + /** + * VersionPriority controls the ordering of this API version inside of its group. Must be greater than zero. The primary sort is based on VersionPriority, ordered highest to lowest (20 before 10). Since it's inside of a group, the number can be small, probably in the 10s. In case of equal version priorities, the version string will be used to compute the order inside a group. If the version string is "kube-like", it will sort above non "kube-like" version strings, which are ordered lexicographically. "Kube-like" versions start with a "v", then are followed by a number (the major version), then optionally the string "alpha" or "beta" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10. + * + * @schema io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceSpec#versionPriority + */ + readonly versionPriority: number; + +} + +/** + * Initializers tracks the progress of initialization. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.Initializers + */ +export interface Initializers { + /** + * Pending is a list of initializers that must execute in order before this object is visible. When the last pending initializer is removed, and no failing result is set, the initializers struct will be set to nil and the object is considered as initialized and visible to all clients. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.Initializers#pending + */ + readonly pending: Initializer[]; + + /** + * If result is set with the Failure field, the object will be persisted to storage and then deleted, ensuring that other clients can observe the deletion. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.Initializers#result + */ + readonly result?: KubeStatusProps; + +} + +/** + * ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry + */ +export interface ManagedFieldsEntry { + /** + * APIVersion defines the version of this resource that this field set applies to. The format is "group/version" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry#apiVersion + */ + readonly apiVersion?: string; + + /** + * Fields identifies a set of fields. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry#fields + */ + readonly fields?: any; + + /** + * Manager is an identifier of the workflow managing these fields. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry#manager + */ + readonly manager?: string; + + /** + * Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry#operation + */ + readonly operation?: string; + + /** + * Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply' + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry#time + */ + readonly time?: Date; + +} + +/** + * OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference + */ +export interface OwnerReference { + /** + * API version of the referent. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference#apiVersion + */ + readonly apiVersion: string; + + /** + * If true, AND if the owner has the "foregroundDeletion" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs "delete" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned. + * + * @default false. To set this field, a user needs "delete" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned. + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference#blockOwnerDeletion + */ + readonly blockOwnerDeletion?: boolean; + + /** + * If true, this reference points to the managing controller. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference#controller + */ + readonly controller?: boolean; + + /** + * Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference#kind + */ + readonly kind: string; + + /** + * Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference#name + */ + readonly name: string; + + /** + * UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference#uid + */ + readonly uid: string; + +} + +/** + * WebhookClientConfig contains the information to make a TLS connection with the webhook + * + * @schema io.k8s.api.admissionregistration.v1beta1.WebhookClientConfig + */ +export interface WebhookClientConfig { + /** + * `caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used. + * + * @schema io.k8s.api.admissionregistration.v1beta1.WebhookClientConfig#caBundle + */ + readonly caBundle?: string; + + /** + * `service` is a reference to the service for this webhook. Either `service` or `url` must be specified. + +If the webhook is running within the cluster, then you should use `service`. + * + * @schema io.k8s.api.admissionregistration.v1beta1.WebhookClientConfig#service + */ + readonly service?: ServiceReference; + + /** + * `url` gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified. + +The `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address. + +Please note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster. + +The scheme must be "https"; the URL must begin with "https://". + +A path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier. + +Attempting to use a user or basic auth e.g. "user:password@" is not allowed. Fragments ("#...") and query parameters ("?...") are not allowed, either. + * + * @schema io.k8s.api.admissionregistration.v1beta1.WebhookClientConfig#url + */ + readonly url?: string; + +} + +/** + * A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector + */ +export interface LabelSelector { + /** + * matchExpressions is a list of label selector requirements. The requirements are ANDed. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector#matchExpressions + */ + readonly matchExpressions?: LabelSelectorRequirement[]; + + /** + * matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector#matchLabels + */ + readonly matchLabels?: { [key: string]: string }; + +} + +/** + * RuleWithOperations is a tuple of Operations and Resources. It is recommended to make sure that all the tuple expansions are valid. + * + * @schema io.k8s.api.admissionregistration.v1beta1.RuleWithOperations + */ +export interface RuleWithOperations { + /** + * APIGroups is the API groups the resources belong to. '*' is all groups. If '*' is present, the length of the slice must be one. Required. + * + * @schema io.k8s.api.admissionregistration.v1beta1.RuleWithOperations#apiGroups + */ + readonly apiGroups?: string[]; + + /** + * APIVersions is the API versions the resources belong to. '*' is all versions. If '*' is present, the length of the slice must be one. Required. + * + * @schema io.k8s.api.admissionregistration.v1beta1.RuleWithOperations#apiVersions + */ + readonly apiVersions?: string[]; + + /** + * Operations is the operations the admission hook cares about - CREATE, UPDATE, or * for all operations. If '*' is present, the length of the slice must be one. Required. + * + * @schema io.k8s.api.admissionregistration.v1beta1.RuleWithOperations#operations + */ + readonly operations?: string[]; + + /** + * Resources is a list of resources this rule applies to. + +For example: 'pods' means pods. 'pods/log' means the log subresource of pods. '*' means all resources, but not subresources. 'pods/*' means all subresources of pods. '_/scale' means all scale subresources. '_/*' means all resources and their subresources. + +If wildcard is present, the validation rule will ensure resources do not overlap with each other. + +Depending on the enclosing object, subresources might not be allowed. Required. + * + * @schema io.k8s.api.admissionregistration.v1beta1.RuleWithOperations#resources + */ + readonly resources?: string[]; + + /** + * scope specifies the scope of this rule. Valid values are "Cluster", "Namespaced", and "*" "Cluster" means that only cluster-scoped resources will match this rule. Namespace API objects are cluster-scoped. "Namespaced" means that only namespaced resources will match this rule. "*" means that there are no scope restrictions. Subresources match the scope of their parent resource. Default is "*". + * + * @default . + * @schema io.k8s.api.admissionregistration.v1beta1.RuleWithOperations#scope + */ + readonly scope?: string; + +} + +/** + * @schema io.k8s.api.extensions.v1beta1.DaemonSetUpdateStrategy + */ +export interface DaemonSetUpdateStrategy { + /** + * Rolling update config params. Present only if type = "RollingUpdate". + * + * @schema io.k8s.api.extensions.v1beta1.DaemonSetUpdateStrategy#rollingUpdate + */ + readonly rollingUpdate?: RollingUpdateDaemonSet; + + /** + * Type of daemon set update. Can be "RollingUpdate" or "OnDelete". Default is OnDelete. + * + * @default OnDelete. + * @schema io.k8s.api.extensions.v1beta1.DaemonSetUpdateStrategy#type + */ + readonly type?: string; + +} + +/** + * DeploymentStrategy describes how to replace existing pods with new ones. + * + * @schema io.k8s.api.apps.v1beta2.DeploymentStrategy + */ +export interface DeploymentStrategy { + /** + * Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate. + * + * @schema io.k8s.api.apps.v1beta2.DeploymentStrategy#rollingUpdate + */ + readonly rollingUpdate?: RollingUpdateDeployment; + + /** + * Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate. + * + * @default RollingUpdate. + * @schema io.k8s.api.apps.v1beta2.DeploymentStrategy#type + */ + readonly type?: string; + +} + +/** + * StatefulSetUpdateStrategy indicates the strategy that the StatefulSet controller will use to perform updates. It includes any additional parameters necessary to perform the update for the indicated strategy. + * + * @schema io.k8s.api.apps.v1beta2.StatefulSetUpdateStrategy + */ +export interface StatefulSetUpdateStrategy { + /** + * RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType. + * + * @schema io.k8s.api.apps.v1beta2.StatefulSetUpdateStrategy#rollingUpdate + */ + readonly rollingUpdate?: RollingUpdateStatefulSetStrategy; + + /** + * Type indicates the type of the StatefulSetUpdateStrategy. Default is RollingUpdate. + * + * @default RollingUpdate. + * @schema io.k8s.api.apps.v1beta2.StatefulSetUpdateStrategy#type + */ + readonly type?: string; + +} + +/** + * Policy defines the configuration of how audit events are logged + * + * @schema io.k8s.api.auditregistration.v1alpha1.Policy + */ +export interface Policy { + /** + * The Level that all requests are recorded at. available options: None, Metadata, Request, RequestResponse required + * + * @schema io.k8s.api.auditregistration.v1alpha1.Policy#level + */ + readonly level: string; + + /** + * Stages is a list of stages for which events are created. + * + * @schema io.k8s.api.auditregistration.v1alpha1.Policy#stages + */ + readonly stages?: string[]; + +} + +/** + * Webhook holds the configuration of the webhook + * + * @schema io.k8s.api.auditregistration.v1alpha1.Webhook + */ +export interface Webhook { + /** + * ClientConfig holds the connection parameters for the webhook required + * + * @schema io.k8s.api.auditregistration.v1alpha1.Webhook#clientConfig + */ + readonly clientConfig: WebhookClientConfig; + + /** + * Throttle holds the options for throttling the webhook + * + * @schema io.k8s.api.auditregistration.v1alpha1.Webhook#throttle + */ + readonly throttle?: WebhookThrottleConfig; + +} + +/** + * NonResourceAttributes includes the authorization attributes available for non-resource requests to the Authorizer interface + * + * @schema io.k8s.api.authorization.v1beta1.NonResourceAttributes + */ +export interface NonResourceAttributes { + /** + * Path is the URL path of the request + * + * @schema io.k8s.api.authorization.v1beta1.NonResourceAttributes#path + */ + readonly path?: string; + + /** + * Verb is the standard HTTP verb + * + * @schema io.k8s.api.authorization.v1beta1.NonResourceAttributes#verb + */ + readonly verb?: string; + +} + +/** + * ResourceAttributes includes the authorization attributes available for resource requests to the Authorizer interface + * + * @schema io.k8s.api.authorization.v1beta1.ResourceAttributes + */ +export interface ResourceAttributes { + /** + * Group is the API Group of the Resource. "*" means all. + * + * @schema io.k8s.api.authorization.v1beta1.ResourceAttributes#group + */ + readonly group?: string; + + /** + * Name is the name of the resource being requested for a "get" or deleted for a "delete". "" (empty) means all. + * + * @schema io.k8s.api.authorization.v1beta1.ResourceAttributes#name + */ + readonly name?: string; + + /** + * Namespace is the namespace of the action being requested. Currently, there is no distinction between no namespace and all namespaces "" (empty) is defaulted for LocalSubjectAccessReviews "" (empty) is empty for cluster-scoped resources "" (empty) means "all" for namespace scoped resources from a SubjectAccessReview or SelfSubjectAccessReview + * + * @schema io.k8s.api.authorization.v1beta1.ResourceAttributes#namespace + */ + readonly namespace?: string; + + /** + * Resource is one of the existing resource types. "*" means all. + * + * @schema io.k8s.api.authorization.v1beta1.ResourceAttributes#resource + */ + readonly resource?: string; + + /** + * Subresource is one of the existing resource types. "" means none. + * + * @schema io.k8s.api.authorization.v1beta1.ResourceAttributes#subresource + */ + readonly subresource?: string; + + /** + * Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy. "*" means all. + * + * @schema io.k8s.api.authorization.v1beta1.ResourceAttributes#verb + */ + readonly verb?: string; + + /** + * Version is the API Version of the Resource. "*" means all. + * + * @schema io.k8s.api.authorization.v1beta1.ResourceAttributes#version + */ + readonly version?: string; + +} + +/** + * MetricSpec specifies how to scale based on a single metric (only `type` and one other matching field should be set at once). + * + * @schema io.k8s.api.autoscaling.v2beta2.MetricSpec + */ +export interface MetricSpec { + /** + * external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster). + * + * @schema io.k8s.api.autoscaling.v2beta2.MetricSpec#external + */ + readonly external?: ExternalMetricSource; + + /** + * object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object). + * + * @schema io.k8s.api.autoscaling.v2beta2.MetricSpec#object + */ + readonly object?: ObjectMetricSource; + + /** + * pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value. + * + * @schema io.k8s.api.autoscaling.v2beta2.MetricSpec#pods + */ + readonly pods?: PodsMetricSource; + + /** + * resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source. + * + * @schema io.k8s.api.autoscaling.v2beta2.MetricSpec#resource + */ + readonly resource?: ResourceMetricSource; + + /** + * type is the type of metric source. It should be one of "Object", "Pods" or "Resource", each mapping to a matching field in the object. + * + * @schema io.k8s.api.autoscaling.v2beta2.MetricSpec#type + */ + readonly type: string; + +} + +/** + * CrossVersionObjectReference contains enough information to let you identify the referred resource. + * + * @schema io.k8s.api.autoscaling.v2beta2.CrossVersionObjectReference + */ +export interface CrossVersionObjectReference { + /** + * API version of the referent + * + * @schema io.k8s.api.autoscaling.v2beta2.CrossVersionObjectReference#apiVersion + */ + readonly apiVersion?: string; + + /** + * Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds" + * + * @schema io.k8s.api.autoscaling.v2beta2.CrossVersionObjectReference#kind + */ + readonly kind: string; + + /** + * Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names + * + * @schema io.k8s.api.autoscaling.v2beta2.CrossVersionObjectReference#name + */ + readonly name: string; + +} + +/** + * JobTemplateSpec describes the data a Job should have when created from a template + * + * @schema io.k8s.api.batch.v2alpha1.JobTemplateSpec + */ +export interface JobTemplateSpec { + /** + * Standard object's metadata of the jobs created from this template. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + * + * @schema io.k8s.api.batch.v2alpha1.JobTemplateSpec#metadata + */ + readonly metadata?: ObjectMeta; + + /** + * Specification of the desired behavior of the job. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status + * + * @schema io.k8s.api.batch.v2alpha1.JobTemplateSpec#spec + */ + readonly spec?: JobSpec; + +} + +/** + * EndpointAddress is a tuple that describes single IP address. + * + * @schema io.k8s.api.core.v1.EndpointAddress + */ +export interface EndpointAddress { + /** + * The Hostname of this endpoint + * + * @schema io.k8s.api.core.v1.EndpointAddress#hostname + */ + readonly hostname?: string; + + /** + * The IP of this endpoint. May not be loopback (127.0.0.0/8), link-local (169.254.0.0/16), or link-local multicast ((224.0.0.0/24). IPv6 is also accepted but not fully supported on all platforms. Also, certain kubernetes components, like kube-proxy, are not IPv6 ready. + * + * @schema io.k8s.api.core.v1.EndpointAddress#ip + */ + readonly ip: string; + + /** + * Optional: Node hosting this endpoint. This can be used to determine endpoints local to a node. + * + * @schema io.k8s.api.core.v1.EndpointAddress#nodeName + */ + readonly nodeName?: string; + + /** + * Reference to object providing the endpoint. + * + * @schema io.k8s.api.core.v1.EndpointAddress#targetRef + */ + readonly targetRef?: ObjectReference; + +} + +/** + * EndpointPort is a tuple that describes a single port. + * + * @schema io.k8s.api.core.v1.EndpointPort + */ +export interface EndpointPort { + /** + * The name of this port (corresponds to ServicePort.Name). Must be a DNS_LABEL. Optional only if one port is defined. + * + * @schema io.k8s.api.core.v1.EndpointPort#name + */ + readonly name?: string; + + /** + * The port number of the endpoint. + * + * @schema io.k8s.api.core.v1.EndpointPort#port + */ + readonly port: number; + + /** + * The IP protocol for this port. Must be UDP, TCP, or SCTP. Default is TCP. + * + * @default TCP. + * @schema io.k8s.api.core.v1.EndpointPort#protocol + */ + readonly protocol?: string; + +} + +/** + * LimitRangeItem defines a min/max usage limit for any resource that matches on kind. + * + * @schema io.k8s.api.core.v1.LimitRangeItem + */ +export interface LimitRangeItem { + /** + * Default resource requirement limit value by resource name if resource limit is omitted. + * + * @schema io.k8s.api.core.v1.LimitRangeItem#default + */ + readonly default?: { [key: string]: Quantity }; + + /** + * DefaultRequest is the default resource requirement request value by resource name if resource request is omitted. + * + * @schema io.k8s.api.core.v1.LimitRangeItem#defaultRequest + */ + readonly defaultRequest?: { [key: string]: Quantity }; + + /** + * Max usage constraints on this kind by resource name. + * + * @schema io.k8s.api.core.v1.LimitRangeItem#max + */ + readonly max?: { [key: string]: Quantity }; + + /** + * MaxLimitRequestRatio if specified, the named resource must have a request and limit that are both non-zero where limit divided by request is less than or equal to the enumerated value; this represents the max burst for the named resource. + * + * @schema io.k8s.api.core.v1.LimitRangeItem#maxLimitRequestRatio + */ + readonly maxLimitRequestRatio?: { [key: string]: Quantity }; + + /** + * Min usage constraints on this kind by resource name. + * + * @schema io.k8s.api.core.v1.LimitRangeItem#min + */ + readonly min?: { [key: string]: Quantity }; + + /** + * Type of resource that this limit applies to. + * + * @schema io.k8s.api.core.v1.LimitRangeItem#type + */ + readonly type?: string; + +} + +/** + * NodeConfigSource specifies a source of node configuration. Exactly one subfield (excluding metadata) must be non-nil. + * + * @schema io.k8s.api.core.v1.NodeConfigSource + */ +export interface NodeConfigSource { + /** + * ConfigMap is a reference to a Node's ConfigMap + * + * @schema io.k8s.api.core.v1.NodeConfigSource#configMap + */ + readonly configMap?: ConfigMapNodeConfigSource; + +} + +/** + * The node this Taint is attached to has the "effect" on any pod that does not tolerate the Taint. + * + * @schema io.k8s.api.core.v1.Taint + */ +export interface Taint { + /** + * Required. The effect of the taint on pods that do not tolerate the taint. Valid effects are NoSchedule, PreferNoSchedule and NoExecute. + * + * @schema io.k8s.api.core.v1.Taint#effect + */ + readonly effect: string; + + /** + * Required. The taint key to be applied to a node. + * + * @schema io.k8s.api.core.v1.Taint#key + */ + readonly key: string; + + /** + * TimeAdded represents the time at which the taint was added. It is only written for NoExecute taints. + * + * @schema io.k8s.api.core.v1.Taint#timeAdded + */ + readonly timeAdded?: Date; + + /** + * Required. The taint value corresponding to the taint key. + * + * @schema io.k8s.api.core.v1.Taint#value + */ + readonly value?: string; + +} + +/** + * Represents a Persistent Disk resource in AWS. + +An AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling. + * + * @schema io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource + */ +export interface AwsElasticBlockStoreVolumeSource { + /** + * Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore + * + * @schema io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource#fsType + */ + readonly fsType?: string; + + /** + * The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty). + * + * @schema io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource#partition + */ + readonly partition?: number; + + /** + * Specify "true" to force and set the ReadOnly property in VolumeMounts to "true". If omitted, the default is "false". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore + * + * @schema io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource#readOnly + */ + readonly readOnly?: boolean; + + /** + * Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore + * + * @schema io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource#volumeID + */ + readonly volumeID: string; + +} + +/** + * AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. + * + * @schema io.k8s.api.core.v1.AzureDiskVolumeSource + */ +export interface AzureDiskVolumeSource { + /** + * Host Caching mode: None, Read Only, Read Write. + * + * @schema io.k8s.api.core.v1.AzureDiskVolumeSource#cachingMode + */ + readonly cachingMode?: string; + + /** + * The Name of the data disk in the blob storage + * + * @schema io.k8s.api.core.v1.AzureDiskVolumeSource#diskName + */ + readonly diskName: string; + + /** + * The URI the data disk in the blob storage + * + * @schema io.k8s.api.core.v1.AzureDiskVolumeSource#diskURI + */ + readonly diskURI: string; + + /** + * Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + * + * @schema io.k8s.api.core.v1.AzureDiskVolumeSource#fsType + */ + readonly fsType?: string; + + /** + * Expected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared + * + * @schema io.k8s.api.core.v1.AzureDiskVolumeSource#kind + */ + readonly kind?: string; + + /** + * Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. + * + * @default false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. + * @schema io.k8s.api.core.v1.AzureDiskVolumeSource#readOnly + */ + readonly readOnly?: boolean; + +} + +/** + * AzureFile represents an Azure File Service mount on the host and bind mount to the pod. + * + * @schema io.k8s.api.core.v1.AzureFilePersistentVolumeSource + */ +export interface AzureFilePersistentVolumeSource { + /** + * Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. + * + * @default false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. + * @schema io.k8s.api.core.v1.AzureFilePersistentVolumeSource#readOnly + */ + readonly readOnly?: boolean; + + /** + * the name of secret that contains Azure Storage Account Name and Key + * + * @schema io.k8s.api.core.v1.AzureFilePersistentVolumeSource#secretName + */ + readonly secretName: string; + + /** + * the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod + * + * @schema io.k8s.api.core.v1.AzureFilePersistentVolumeSource#secretNamespace + */ + readonly secretNamespace?: string; + + /** + * Share Name + * + * @schema io.k8s.api.core.v1.AzureFilePersistentVolumeSource#shareName + */ + readonly shareName: string; + +} + +/** + * @schema io.k8s.apimachinery.pkg.api.resource.Quantity + */ +export class Quantity { + public static fromString(value: string): Quantity { + return new Quantity(value); + } + public static fromNumber(value: number): Quantity { + return new Quantity(value); + } + private constructor(value: any) { + Object.defineProperty(this, 'resolve', { value: () => value }); + } +} + +/** + * Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling. + * + * @schema io.k8s.api.core.v1.CephFSPersistentVolumeSource + */ +export interface CephFsPersistentVolumeSource { + /** + * Required: Monitors is a collection of Ceph monitors More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it + * + * @schema io.k8s.api.core.v1.CephFSPersistentVolumeSource#monitors + */ + readonly monitors: string[]; + + /** + * Optional: Used as the mounted root, rather than the full Ceph tree, default is / + * + * @schema io.k8s.api.core.v1.CephFSPersistentVolumeSource#path + */ + readonly path?: string; + + /** + * Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it + * + * @default false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it + * @schema io.k8s.api.core.v1.CephFSPersistentVolumeSource#readOnly + */ + readonly readOnly?: boolean; + + /** + * Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it + * + * @schema io.k8s.api.core.v1.CephFSPersistentVolumeSource#secretFile + */ + readonly secretFile?: string; + + /** + * Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it + * + * @schema io.k8s.api.core.v1.CephFSPersistentVolumeSource#secretRef + */ + readonly secretRef?: SecretReference; + + /** + * Optional: User is the rados user name, default is admin More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it + * + * @schema io.k8s.api.core.v1.CephFSPersistentVolumeSource#user + */ + readonly user?: string; + +} + +/** + * Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling. + * + * @schema io.k8s.api.core.v1.CinderPersistentVolumeSource + */ +export interface CinderPersistentVolumeSource { + /** + * Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md + * + * @schema io.k8s.api.core.v1.CinderPersistentVolumeSource#fsType + */ + readonly fsType?: string; + + /** + * Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md + * + * @default false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md + * @schema io.k8s.api.core.v1.CinderPersistentVolumeSource#readOnly + */ + readonly readOnly?: boolean; + + /** + * Optional: points to a secret object containing parameters used to connect to OpenStack. + * + * @schema io.k8s.api.core.v1.CinderPersistentVolumeSource#secretRef + */ + readonly secretRef?: SecretReference; + + /** + * volume id used to identify the volume in cinder More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md + * + * @schema io.k8s.api.core.v1.CinderPersistentVolumeSource#volumeID + */ + readonly volumeID: string; + +} + +/** + * Represents storage that is managed by an external CSI volume driver (Beta feature) + * + * @schema io.k8s.api.core.v1.CSIPersistentVolumeSource + */ +export interface CsiPersistentVolumeSource { + /** + * ControllerExpandSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerExpandVolume call. This is an alpha field and requires enabling ExpandCSIVolumes feature gate. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed. + * + * @schema io.k8s.api.core.v1.CSIPersistentVolumeSource#controllerExpandSecretRef + */ + readonly controllerExpandSecretRef?: SecretReference; + + /** + * ControllerPublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerPublishVolume and ControllerUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed. + * + * @schema io.k8s.api.core.v1.CSIPersistentVolumeSource#controllerPublishSecretRef + */ + readonly controllerPublishSecretRef?: SecretReference; + + /** + * Driver is the name of the driver to use for this volume. Required. + * + * @schema io.k8s.api.core.v1.CSIPersistentVolumeSource#driver + */ + readonly driver: string; + + /** + * Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". + * + * @schema io.k8s.api.core.v1.CSIPersistentVolumeSource#fsType + */ + readonly fsType?: string; + + /** + * NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed. + * + * @schema io.k8s.api.core.v1.CSIPersistentVolumeSource#nodePublishSecretRef + */ + readonly nodePublishSecretRef?: SecretReference; + + /** + * NodeStageSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeStageVolume and NodeStageVolume and NodeUnstageVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed. + * + * @schema io.k8s.api.core.v1.CSIPersistentVolumeSource#nodeStageSecretRef + */ + readonly nodeStageSecretRef?: SecretReference; + + /** + * Optional: The value to pass to ControllerPublishVolumeRequest. Defaults to false (read/write). + * + * @default false (read/write). + * @schema io.k8s.api.core.v1.CSIPersistentVolumeSource#readOnly + */ + readonly readOnly?: boolean; + + /** + * Attributes of the volume to publish. + * + * @schema io.k8s.api.core.v1.CSIPersistentVolumeSource#volumeAttributes + */ + readonly volumeAttributes?: { [key: string]: string }; + + /** + * VolumeHandle is the unique volume name returned by the CSI volume plugin’s CreateVolume to refer to the volume on all subsequent calls. Required. + * + * @schema io.k8s.api.core.v1.CSIPersistentVolumeSource#volumeHandle + */ + readonly volumeHandle: string; + +} + +/** + * Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling. + * + * @schema io.k8s.api.core.v1.FCVolumeSource + */ +export interface FcVolumeSource { + /** + * Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + * + * @schema io.k8s.api.core.v1.FCVolumeSource#fsType + */ + readonly fsType?: string; + + /** + * Optional: FC target lun number + * + * @schema io.k8s.api.core.v1.FCVolumeSource#lun + */ + readonly lun?: number; + + /** + * Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. + * + * @default false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. + * @schema io.k8s.api.core.v1.FCVolumeSource#readOnly + */ + readonly readOnly?: boolean; + + /** + * Optional: FC target worldwide names (WWNs) + * + * @schema io.k8s.api.core.v1.FCVolumeSource#targetWWNs + */ + readonly targetWWNs?: string[]; + + /** + * Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously. + * + * @schema io.k8s.api.core.v1.FCVolumeSource#wwids + */ + readonly wwids?: string[]; + +} + +/** + * FlexPersistentVolumeSource represents a generic persistent volume resource that is provisioned/attached using an exec based plugin. + * + * @schema io.k8s.api.core.v1.FlexPersistentVolumeSource + */ +export interface FlexPersistentVolumeSource { + /** + * Driver is the name of the driver to use for this volume. + * + * @schema io.k8s.api.core.v1.FlexPersistentVolumeSource#driver + */ + readonly driver: string; + + /** + * Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". The default filesystem depends on FlexVolume script. + * + * @schema io.k8s.api.core.v1.FlexPersistentVolumeSource#fsType + */ + readonly fsType?: string; + + /** + * Optional: Extra command options if any. + * + * @schema io.k8s.api.core.v1.FlexPersistentVolumeSource#options + */ + readonly options?: { [key: string]: string }; + + /** + * Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. + * + * @default false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. + * @schema io.k8s.api.core.v1.FlexPersistentVolumeSource#readOnly + */ + readonly readOnly?: boolean; + + /** + * Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts. + * + * @schema io.k8s.api.core.v1.FlexPersistentVolumeSource#secretRef + */ + readonly secretRef?: SecretReference; + +} + +/** + * Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling. + * + * @schema io.k8s.api.core.v1.FlockerVolumeSource + */ +export interface FlockerVolumeSource { + /** + * Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated + * + * @schema io.k8s.api.core.v1.FlockerVolumeSource#datasetName + */ + readonly datasetName?: string; + + /** + * UUID of the dataset. This is unique identifier of a Flocker dataset + * + * @schema io.k8s.api.core.v1.FlockerVolumeSource#datasetUUID + */ + readonly datasetUUID?: string; + +} + +/** + * Represents a Persistent Disk resource in Google Compute Engine. + +A GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling. + * + * @schema io.k8s.api.core.v1.GCEPersistentDiskVolumeSource + */ +export interface GcePersistentDiskVolumeSource { + /** + * Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk + * + * @schema io.k8s.api.core.v1.GCEPersistentDiskVolumeSource#fsType + */ + readonly fsType?: string; + + /** + * The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk + * + * @schema io.k8s.api.core.v1.GCEPersistentDiskVolumeSource#partition + */ + readonly partition?: number; + + /** + * Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk + * + * @schema io.k8s.api.core.v1.GCEPersistentDiskVolumeSource#pdName + */ + readonly pdName: string; + + /** + * ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk + * + * @default false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk + * @schema io.k8s.api.core.v1.GCEPersistentDiskVolumeSource#readOnly + */ + readonly readOnly?: boolean; + +} + +/** + * Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling. + * + * @schema io.k8s.api.core.v1.GlusterfsPersistentVolumeSource + */ +export interface GlusterfsPersistentVolumeSource { + /** + * EndpointsName is the endpoint name that details Glusterfs topology. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod + * + * @schema io.k8s.api.core.v1.GlusterfsPersistentVolumeSource#endpoints + */ + readonly endpoints: string; + + /** + * EndpointsNamespace is the namespace that contains Glusterfs endpoint. If this field is empty, the EndpointNamespace defaults to the same namespace as the bound PVC. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod + * + * @schema io.k8s.api.core.v1.GlusterfsPersistentVolumeSource#endpointsNamespace + */ + readonly endpointsNamespace?: string; + + /** + * Path is the Glusterfs volume path. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod + * + * @schema io.k8s.api.core.v1.GlusterfsPersistentVolumeSource#path + */ + readonly path: string; + + /** + * ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod + * + * @default false. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod + * @schema io.k8s.api.core.v1.GlusterfsPersistentVolumeSource#readOnly + */ + readonly readOnly?: boolean; + +} + +/** + * Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling. + * + * @schema io.k8s.api.core.v1.HostPathVolumeSource + */ +export interface HostPathVolumeSource { + /** + * Path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath + * + * @schema io.k8s.api.core.v1.HostPathVolumeSource#path + */ + readonly path: string; + + /** + * Type for HostPath Volume Defaults to "" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath + * + * @default More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath + * @schema io.k8s.api.core.v1.HostPathVolumeSource#type + */ + readonly type?: string; + +} + +/** + * ISCSIPersistentVolumeSource represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling. + * + * @schema io.k8s.api.core.v1.ISCSIPersistentVolumeSource + */ +export interface IscsiPersistentVolumeSource { + /** + * whether support iSCSI Discovery CHAP authentication + * + * @schema io.k8s.api.core.v1.ISCSIPersistentVolumeSource#chapAuthDiscovery + */ + readonly chapAuthDiscovery?: boolean; + + /** + * whether support iSCSI Session CHAP authentication + * + * @schema io.k8s.api.core.v1.ISCSIPersistentVolumeSource#chapAuthSession + */ + readonly chapAuthSession?: boolean; + + /** + * Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi + * + * @schema io.k8s.api.core.v1.ISCSIPersistentVolumeSource#fsType + */ + readonly fsType?: string; + + /** + * Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface : will be created for the connection. + * + * @schema io.k8s.api.core.v1.ISCSIPersistentVolumeSource#initiatorName + */ + readonly initiatorName?: string; + + /** + * Target iSCSI Qualified Name. + * + * @schema io.k8s.api.core.v1.ISCSIPersistentVolumeSource#iqn + */ + readonly iqn: string; + + /** + * iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp). + * + * @default default' (tcp). + * @schema io.k8s.api.core.v1.ISCSIPersistentVolumeSource#iscsiInterface + */ + readonly iscsiInterface?: string; + + /** + * iSCSI Target Lun number. + * + * @schema io.k8s.api.core.v1.ISCSIPersistentVolumeSource#lun + */ + readonly lun: number; + + /** + * iSCSI Target Portal List. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260). + * + * @schema io.k8s.api.core.v1.ISCSIPersistentVolumeSource#portals + */ + readonly portals?: string[]; + + /** + * ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. + * + * @default false. + * @schema io.k8s.api.core.v1.ISCSIPersistentVolumeSource#readOnly + */ + readonly readOnly?: boolean; + + /** + * CHAP Secret for iSCSI target and initiator authentication + * + * @schema io.k8s.api.core.v1.ISCSIPersistentVolumeSource#secretRef + */ + readonly secretRef?: SecretReference; + + /** + * iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260). + * + * @schema io.k8s.api.core.v1.ISCSIPersistentVolumeSource#targetPortal + */ + readonly targetPortal: string; + +} + +/** + * Local represents directly-attached storage with node affinity (Beta feature) + * + * @schema io.k8s.api.core.v1.LocalVolumeSource + */ +export interface LocalVolumeSource { + /** + * Filesystem type to mount. It applies only when the Path is a block device. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". The default value is to auto-select a fileystem if unspecified. + * + * @schema io.k8s.api.core.v1.LocalVolumeSource#fsType + */ + readonly fsType?: string; + + /** + * The full path to the volume on the node. It can be either a directory or block device (disk, partition, ...). + * + * @schema io.k8s.api.core.v1.LocalVolumeSource#path + */ + readonly path: string; + +} + +/** + * Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling. + * + * @schema io.k8s.api.core.v1.NFSVolumeSource + */ +export interface NfsVolumeSource { + /** + * Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs + * + * @schema io.k8s.api.core.v1.NFSVolumeSource#path + */ + readonly path: string; + + /** + * ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs + * + * @default false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs + * @schema io.k8s.api.core.v1.NFSVolumeSource#readOnly + */ + readonly readOnly?: boolean; + + /** + * Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs + * + * @schema io.k8s.api.core.v1.NFSVolumeSource#server + */ + readonly server: string; + +} + +/** + * VolumeNodeAffinity defines constraints that limit what nodes this volume can be accessed from. + * + * @schema io.k8s.api.core.v1.VolumeNodeAffinity + */ +export interface VolumeNodeAffinity { + /** + * Required specifies hard node constraints that must be met. + * + * @schema io.k8s.api.core.v1.VolumeNodeAffinity#required + */ + readonly required?: NodeSelector; + +} + +/** + * Represents a Photon Controller persistent disk resource. + * + * @schema io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource + */ +export interface PhotonPersistentDiskVolumeSource { + /** + * Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + * + * @schema io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource#fsType + */ + readonly fsType?: string; + + /** + * ID that identifies Photon Controller persistent disk + * + * @schema io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource#pdID + */ + readonly pdID: string; + +} + +/** + * PortworxVolumeSource represents a Portworx volume resource. + * + * @schema io.k8s.api.core.v1.PortworxVolumeSource + */ +export interface PortworxVolumeSource { + /** + * FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs". Implicitly inferred to be "ext4" if unspecified. + * + * @schema io.k8s.api.core.v1.PortworxVolumeSource#fsType + */ + readonly fsType?: string; + + /** + * Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. + * + * @default false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. + * @schema io.k8s.api.core.v1.PortworxVolumeSource#readOnly + */ + readonly readOnly?: boolean; + + /** + * VolumeID uniquely identifies a Portworx volume + * + * @schema io.k8s.api.core.v1.PortworxVolumeSource#volumeID + */ + readonly volumeID: string; + +} + +/** + * Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling. + * + * @schema io.k8s.api.core.v1.QuobyteVolumeSource + */ +export interface QuobyteVolumeSource { + /** + * Group to map volume access to Default is no group + * + * @default no group + * @schema io.k8s.api.core.v1.QuobyteVolumeSource#group + */ + readonly group?: string; + + /** + * ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false. + * + * @default false. + * @schema io.k8s.api.core.v1.QuobyteVolumeSource#readOnly + */ + readonly readOnly?: boolean; + + /** + * Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes + * + * @schema io.k8s.api.core.v1.QuobyteVolumeSource#registry + */ + readonly registry: string; + + /** + * Tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin + * + * @schema io.k8s.api.core.v1.QuobyteVolumeSource#tenant + */ + readonly tenant?: string; + + /** + * User to map volume access to Defaults to serivceaccount user + * + * @default serivceaccount user + * @schema io.k8s.api.core.v1.QuobyteVolumeSource#user + */ + readonly user?: string; + + /** + * Volume is a string that references an already created Quobyte volume by name. + * + * @schema io.k8s.api.core.v1.QuobyteVolumeSource#volume + */ + readonly volume: string; + +} + +/** + * Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling. + * + * @schema io.k8s.api.core.v1.RBDPersistentVolumeSource + */ +export interface RbdPersistentVolumeSource { + /** + * Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd + * + * @schema io.k8s.api.core.v1.RBDPersistentVolumeSource#fsType + */ + readonly fsType?: string; + + /** + * The rados image name. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it + * + * @schema io.k8s.api.core.v1.RBDPersistentVolumeSource#image + */ + readonly image: string; + + /** + * Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it + * + * @default etc/ceph/keyring. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it + * @schema io.k8s.api.core.v1.RBDPersistentVolumeSource#keyring + */ + readonly keyring?: string; + + /** + * A collection of Ceph monitors. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it + * + * @schema io.k8s.api.core.v1.RBDPersistentVolumeSource#monitors + */ + readonly monitors: string[]; + + /** + * The rados pool name. Default is rbd. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it + * + * @default rbd. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it + * @schema io.k8s.api.core.v1.RBDPersistentVolumeSource#pool + */ + readonly pool?: string; + + /** + * ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it + * + * @default false. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it + * @schema io.k8s.api.core.v1.RBDPersistentVolumeSource#readOnly + */ + readonly readOnly?: boolean; + + /** + * SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it + * + * @default nil. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it + * @schema io.k8s.api.core.v1.RBDPersistentVolumeSource#secretRef + */ + readonly secretRef?: SecretReference; + + /** + * The rados user name. Default is admin. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it + * + * @default admin. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it + * @schema io.k8s.api.core.v1.RBDPersistentVolumeSource#user + */ + readonly user?: string; + +} + +/** + * ScaleIOPersistentVolumeSource represents a persistent ScaleIO volume + * + * @schema io.k8s.api.core.v1.ScaleIOPersistentVolumeSource + */ +export interface ScaleIoPersistentVolumeSource { + /** + * Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Default is "xfs" + * + * @default xfs" + * @schema io.k8s.api.core.v1.ScaleIOPersistentVolumeSource#fsType + */ + readonly fsType?: string; + + /** + * The host address of the ScaleIO API Gateway. + * + * @schema io.k8s.api.core.v1.ScaleIOPersistentVolumeSource#gateway + */ + readonly gateway: string; + + /** + * The name of the ScaleIO Protection Domain for the configured storage. + * + * @schema io.k8s.api.core.v1.ScaleIOPersistentVolumeSource#protectionDomain + */ + readonly protectionDomain?: string; + + /** + * Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. + * + * @default false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. + * @schema io.k8s.api.core.v1.ScaleIOPersistentVolumeSource#readOnly + */ + readonly readOnly?: boolean; + + /** + * SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail. + * + * @schema io.k8s.api.core.v1.ScaleIOPersistentVolumeSource#secretRef + */ + readonly secretRef: SecretReference; + + /** + * Flag to enable/disable SSL communication with Gateway, default false + * + * @schema io.k8s.api.core.v1.ScaleIOPersistentVolumeSource#sslEnabled + */ + readonly sslEnabled?: boolean; + + /** + * Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned. + * + * @default ThinProvisioned. + * @schema io.k8s.api.core.v1.ScaleIOPersistentVolumeSource#storageMode + */ + readonly storageMode?: string; + + /** + * The ScaleIO Storage Pool associated with the protection domain. + * + * @schema io.k8s.api.core.v1.ScaleIOPersistentVolumeSource#storagePool + */ + readonly storagePool?: string; + + /** + * The name of the storage system as configured in ScaleIO. + * + * @schema io.k8s.api.core.v1.ScaleIOPersistentVolumeSource#system + */ + readonly system: string; + + /** + * The name of a volume already created in the ScaleIO system that is associated with this volume source. + * + * @schema io.k8s.api.core.v1.ScaleIOPersistentVolumeSource#volumeName + */ + readonly volumeName?: string; + +} + +/** + * Represents a StorageOS persistent volume resource. + * + * @schema io.k8s.api.core.v1.StorageOSPersistentVolumeSource + */ +export interface StorageOsPersistentVolumeSource { + /** + * Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + * + * @schema io.k8s.api.core.v1.StorageOSPersistentVolumeSource#fsType + */ + readonly fsType?: string; + + /** + * Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. + * + * @default false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. + * @schema io.k8s.api.core.v1.StorageOSPersistentVolumeSource#readOnly + */ + readonly readOnly?: boolean; + + /** + * SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted. + * + * @schema io.k8s.api.core.v1.StorageOSPersistentVolumeSource#secretRef + */ + readonly secretRef?: ObjectReference; + + /** + * VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace. + * + * @schema io.k8s.api.core.v1.StorageOSPersistentVolumeSource#volumeName + */ + readonly volumeName?: string; + + /** + * VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to "default" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created. + * + * @schema io.k8s.api.core.v1.StorageOSPersistentVolumeSource#volumeNamespace + */ + readonly volumeNamespace?: string; + +} + +/** + * Represents a vSphere volume resource. + * + * @schema io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource + */ +export interface VsphereVirtualDiskVolumeSource { + /** + * Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + * + * @schema io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource#fsType + */ + readonly fsType?: string; + + /** + * Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName. + * + * @schema io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource#storagePolicyID + */ + readonly storagePolicyID?: string; + + /** + * Storage Policy Based Management (SPBM) profile name. + * + * @schema io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource#storagePolicyName + */ + readonly storagePolicyName?: string; + + /** + * Path that identifies vSphere volume vmdk + * + * @schema io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource#volumePath + */ + readonly volumePath: string; + +} + +/** + * TypedLocalObjectReference contains enough information to let you locate the typed referenced object inside the same namespace. + * + * @schema io.k8s.api.core.v1.TypedLocalObjectReference + */ +export interface TypedLocalObjectReference { + /** + * APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required. + * + * @schema io.k8s.api.core.v1.TypedLocalObjectReference#apiGroup + */ + readonly apiGroup?: string; + + /** + * Kind is the type of resource being referenced + * + * @schema io.k8s.api.core.v1.TypedLocalObjectReference#kind + */ + readonly kind: string; + + /** + * Name is the name of resource being referenced + * + * @schema io.k8s.api.core.v1.TypedLocalObjectReference#name + */ + readonly name: string; + +} + +/** + * ResourceRequirements describes the compute resource requirements. + * + * @schema io.k8s.api.core.v1.ResourceRequirements + */ +export interface ResourceRequirements { + /** + * Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + * + * @schema io.k8s.api.core.v1.ResourceRequirements#limits + */ + readonly limits?: { [key: string]: Quantity }; + + /** + * Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + * + * @schema io.k8s.api.core.v1.ResourceRequirements#requests + */ + readonly requests?: { [key: string]: Quantity }; + +} + +/** + * Affinity is a group of affinity scheduling rules. + * + * @schema io.k8s.api.core.v1.Affinity + */ +export interface Affinity { + /** + * Describes node affinity scheduling rules for the pod. + * + * @schema io.k8s.api.core.v1.Affinity#nodeAffinity + */ + readonly nodeAffinity?: NodeAffinity; + + /** + * Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)). + * + * @schema io.k8s.api.core.v1.Affinity#podAffinity + */ + readonly podAffinity?: PodAffinity; + + /** + * Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)). + * + * @schema io.k8s.api.core.v1.Affinity#podAntiAffinity + */ + readonly podAntiAffinity?: PodAntiAffinity; + +} + +/** + * A single application container that you want to run within a pod. + * + * @schema io.k8s.api.core.v1.Container + */ +export interface Container { + /** + * Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell + * + * @schema io.k8s.api.core.v1.Container#args + */ + readonly args?: string[]; + + /** + * Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell + * + * @schema io.k8s.api.core.v1.Container#command + */ + readonly command?: string[]; + + /** + * List of environment variables to set in the container. Cannot be updated. + * + * @schema io.k8s.api.core.v1.Container#env + */ + readonly env?: EnvVar[]; + + /** + * List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated. + * + * @schema io.k8s.api.core.v1.Container#envFrom + */ + readonly envFrom?: EnvFromSource[]; + + /** + * Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets. + * + * @schema io.k8s.api.core.v1.Container#image + */ + readonly image?: string; + + /** + * Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images + * + * @default Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images + * @schema io.k8s.api.core.v1.Container#imagePullPolicy + */ + readonly imagePullPolicy?: string; + + /** + * Actions that the management system should take in response to container lifecycle events. Cannot be updated. + * + * @schema io.k8s.api.core.v1.Container#lifecycle + */ + readonly lifecycle?: Lifecycle; + + /** + * Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + * + * @schema io.k8s.api.core.v1.Container#livenessProbe + */ + readonly livenessProbe?: Probe; + + /** + * Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated. + * + * @schema io.k8s.api.core.v1.Container#name + */ + readonly name: string; + + /** + * List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default "0.0.0.0" address inside a container will be accessible from the network. Cannot be updated. + * + * @schema io.k8s.api.core.v1.Container#ports + */ + readonly ports?: ContainerPort[]; + + /** + * Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + * + * @schema io.k8s.api.core.v1.Container#readinessProbe + */ + readonly readinessProbe?: Probe; + + /** + * Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + * + * @schema io.k8s.api.core.v1.Container#resources + */ + readonly resources?: ResourceRequirements; + + /** + * Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ + * + * @schema io.k8s.api.core.v1.Container#securityContext + */ + readonly securityContext?: SecurityContext; + + /** + * Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false. + * + * @default false. + * @schema io.k8s.api.core.v1.Container#stdin + */ + readonly stdin?: boolean; + + /** + * Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false + * + * @default false + * @schema io.k8s.api.core.v1.Container#stdinOnce + */ + readonly stdinOnce?: boolean; + + /** + * Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated. + * + * @default dev/termination-log. Cannot be updated. + * @schema io.k8s.api.core.v1.Container#terminationMessagePath + */ + readonly terminationMessagePath?: string; + + /** + * Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated. + * + * @default File. Cannot be updated. + * @schema io.k8s.api.core.v1.Container#terminationMessagePolicy + */ + readonly terminationMessagePolicy?: string; + + /** + * Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false. + * + * @default false. + * @schema io.k8s.api.core.v1.Container#tty + */ + readonly tty?: boolean; + + /** + * volumeDevices is the list of block devices to be used by the container. This is a beta feature. + * + * @schema io.k8s.api.core.v1.Container#volumeDevices + */ + readonly volumeDevices?: VolumeDevice[]; + + /** + * Pod volumes to mount into the container's filesystem. Cannot be updated. + * + * @schema io.k8s.api.core.v1.Container#volumeMounts + */ + readonly volumeMounts?: VolumeMount[]; + + /** + * Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated. + * + * @schema io.k8s.api.core.v1.Container#workingDir + */ + readonly workingDir?: string; + +} + +/** + * PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy. + * + * @schema io.k8s.api.core.v1.PodDNSConfig + */ +export interface PodDnsConfig { + /** + * A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed. + * + * @schema io.k8s.api.core.v1.PodDNSConfig#nameservers + */ + readonly nameservers?: string[]; + + /** + * A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy. + * + * @schema io.k8s.api.core.v1.PodDNSConfig#options + */ + readonly options?: PodDnsConfigOption[]; + + /** + * A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed. + * + * @schema io.k8s.api.core.v1.PodDNSConfig#searches + */ + readonly searches?: string[]; + +} + +/** + * HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file. + * + * @schema io.k8s.api.core.v1.HostAlias + */ +export interface HostAlias { + /** + * Hostnames for the above IP address. + * + * @schema io.k8s.api.core.v1.HostAlias#hostnames + */ + readonly hostnames?: string[]; + + /** + * IP address of the host file entry. + * + * @schema io.k8s.api.core.v1.HostAlias#ip + */ + readonly ip?: string; + +} + +/** + * PodReadinessGate contains the reference to a pod condition + * + * @schema io.k8s.api.core.v1.PodReadinessGate + */ +export interface PodReadinessGate { + /** + * ConditionType refers to a condition in the pod's condition list with matching type. + * + * @schema io.k8s.api.core.v1.PodReadinessGate#conditionType + */ + readonly conditionType: string; + +} + +/** + * PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext. + * + * @schema io.k8s.api.core.v1.PodSecurityContext + */ +export interface PodSecurityContext { + /** + * A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod: + +1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw---- + +If unset, the Kubelet will not modify the ownership and permissions of any volume. + * + * @schema io.k8s.api.core.v1.PodSecurityContext#fsGroup + */ + readonly fsGroup?: number; + + /** + * The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. + * + * @schema io.k8s.api.core.v1.PodSecurityContext#runAsGroup + */ + readonly runAsGroup?: number; + + /** + * Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. + * + * @schema io.k8s.api.core.v1.PodSecurityContext#runAsNonRoot + */ + readonly runAsNonRoot?: boolean; + + /** + * The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. + * + * @default user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. + * @schema io.k8s.api.core.v1.PodSecurityContext#runAsUser + */ + readonly runAsUser?: number; + + /** + * The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. + * + * @schema io.k8s.api.core.v1.PodSecurityContext#seLinuxOptions + */ + readonly seLinuxOptions?: SeLinuxOptions; + + /** + * A list of groups applied to the first process run in each container, in addition to the container's primary GID. If unspecified, no groups will be added to any container. + * + * @schema io.k8s.api.core.v1.PodSecurityContext#supplementalGroups + */ + readonly supplementalGroups?: number[]; + + /** + * Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch. + * + * @schema io.k8s.api.core.v1.PodSecurityContext#sysctls + */ + readonly sysctls?: Sysctl[]; + + /** + * Windows security options. + * + * @schema io.k8s.api.core.v1.PodSecurityContext#windowsOptions + */ + readonly windowsOptions?: WindowsSecurityContextOptions; + +} + +/** + * The pod this Toleration is attached to tolerates any taint that matches the triple using the matching operator . + * + * @schema io.k8s.api.core.v1.Toleration + */ +export interface Toleration { + /** + * Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute. + * + * @schema io.k8s.api.core.v1.Toleration#effect + */ + readonly effect?: string; + + /** + * Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys. + * + * @schema io.k8s.api.core.v1.Toleration#key + */ + readonly key?: string; + + /** + * Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category. + * + * @default Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category. + * @schema io.k8s.api.core.v1.Toleration#operator + */ + readonly operator?: string; + + /** + * TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system. + * + * @schema io.k8s.api.core.v1.Toleration#tolerationSeconds + */ + readonly tolerationSeconds?: number; + + /** + * Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string. + * + * @schema io.k8s.api.core.v1.Toleration#value + */ + readonly value?: string; + +} + +/** + * Volume represents a named volume in a pod that may be accessed by any container in the pod. + * + * @schema io.k8s.api.core.v1.Volume + */ +export interface Volume { + /** + * AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore + * + * @schema io.k8s.api.core.v1.Volume#awsElasticBlockStore + */ + readonly awsElasticBlockStore?: AwsElasticBlockStoreVolumeSource; + + /** + * AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. + * + * @schema io.k8s.api.core.v1.Volume#azureDisk + */ + readonly azureDisk?: AzureDiskVolumeSource; + + /** + * AzureFile represents an Azure File Service mount on the host and bind mount to the pod. + * + * @schema io.k8s.api.core.v1.Volume#azureFile + */ + readonly azureFile?: AzureFileVolumeSource; + + /** + * CephFS represents a Ceph FS mount on the host that shares a pod's lifetime + * + * @schema io.k8s.api.core.v1.Volume#cephfs + */ + readonly cephfs?: CephFsVolumeSource; + + /** + * Cinder represents a cinder volume attached and mounted on kubelets host machine More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md + * + * @schema io.k8s.api.core.v1.Volume#cinder + */ + readonly cinder?: CinderVolumeSource; + + /** + * ConfigMap represents a configMap that should populate this volume + * + * @schema io.k8s.api.core.v1.Volume#configMap + */ + readonly configMap?: ConfigMapVolumeSource; + + /** + * CSI (Container Storage Interface) represents storage that is handled by an external CSI driver (Alpha feature). + * + * @schema io.k8s.api.core.v1.Volume#csi + */ + readonly csi?: CsiVolumeSource; + + /** + * DownwardAPI represents downward API about the pod that should populate this volume + * + * @schema io.k8s.api.core.v1.Volume#downwardAPI + */ + readonly downwardAPI?: DownwardApiVolumeSource; + + /** + * EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir + * + * @schema io.k8s.api.core.v1.Volume#emptyDir + */ + readonly emptyDir?: EmptyDirVolumeSource; + + /** + * FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod. + * + * @schema io.k8s.api.core.v1.Volume#fc + */ + readonly fc?: FcVolumeSource; + + /** + * FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin. + * + * @schema io.k8s.api.core.v1.Volume#flexVolume + */ + readonly flexVolume?: FlexVolumeSource; + + /** + * Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running + * + * @schema io.k8s.api.core.v1.Volume#flocker + */ + readonly flocker?: FlockerVolumeSource; + + /** + * GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk + * + * @schema io.k8s.api.core.v1.Volume#gcePersistentDisk + */ + readonly gcePersistentDisk?: GcePersistentDiskVolumeSource; + + /** + * GitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container. + * + * @schema io.k8s.api.core.v1.Volume#gitRepo + */ + readonly gitRepo?: GitRepoVolumeSource; + + /** + * Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md + * + * @schema io.k8s.api.core.v1.Volume#glusterfs + */ + readonly glusterfs?: GlusterfsVolumeSource; + + /** + * HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath + * + * @schema io.k8s.api.core.v1.Volume#hostPath + */ + readonly hostPath?: HostPathVolumeSource; + + /** + * ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://releases.k8s.io/HEAD/examples/volumes/iscsi/README.md + * + * @schema io.k8s.api.core.v1.Volume#iscsi + */ + readonly iscsi?: IscsiVolumeSource; + + /** + * Volume's name. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + * + * @schema io.k8s.api.core.v1.Volume#name + */ + readonly name: string; + + /** + * NFS represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs + * + * @schema io.k8s.api.core.v1.Volume#nfs + */ + readonly nfs?: NfsVolumeSource; + + /** + * PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims + * + * @schema io.k8s.api.core.v1.Volume#persistentVolumeClaim + */ + readonly persistentVolumeClaim?: PersistentVolumeClaimVolumeSource; + + /** + * PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine + * + * @schema io.k8s.api.core.v1.Volume#photonPersistentDisk + */ + readonly photonPersistentDisk?: PhotonPersistentDiskVolumeSource; + + /** + * PortworxVolume represents a portworx volume attached and mounted on kubelets host machine + * + * @schema io.k8s.api.core.v1.Volume#portworxVolume + */ + readonly portworxVolume?: PortworxVolumeSource; + + /** + * Items for all in one resources secrets, configmaps, and downward API + * + * @schema io.k8s.api.core.v1.Volume#projected + */ + readonly projected?: ProjectedVolumeSource; + + /** + * Quobyte represents a Quobyte mount on the host that shares a pod's lifetime + * + * @schema io.k8s.api.core.v1.Volume#quobyte + */ + readonly quobyte?: QuobyteVolumeSource; + + /** + * RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md + * + * @schema io.k8s.api.core.v1.Volume#rbd + */ + readonly rbd?: RbdVolumeSource; + + /** + * ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes. + * + * @schema io.k8s.api.core.v1.Volume#scaleIO + */ + readonly scaleIO?: ScaleIoVolumeSource; + + /** + * Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret + * + * @schema io.k8s.api.core.v1.Volume#secret + */ + readonly secret?: SecretVolumeSource; + + /** + * StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes. + * + * @schema io.k8s.api.core.v1.Volume#storageos + */ + readonly storageos?: StorageOsVolumeSource; + + /** + * VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine + * + * @schema io.k8s.api.core.v1.Volume#vsphereVolume + */ + readonly vsphereVolume?: VsphereVirtualDiskVolumeSource; + +} + +/** + * A scope selector represents the AND of the selectors represented by the scoped-resource selector requirements. + * + * @schema io.k8s.api.core.v1.ScopeSelector + */ +export interface ScopeSelector { + /** + * A list of scope selector requirements by scope of the resources. + * + * @schema io.k8s.api.core.v1.ScopeSelector#matchExpressions + */ + readonly matchExpressions?: ScopedResourceSelectorRequirement[]; + +} + +/** + * ServicePort contains information on service's port. + * + * @schema io.k8s.api.core.v1.ServicePort + */ +export interface ServicePort { + /** + * The name of this port within the service. This must be a DNS_LABEL. All ports within a ServiceSpec must have unique names. This maps to the 'Name' field in EndpointPort objects. Optional if only one ServicePort is defined on this service. + * + * @schema io.k8s.api.core.v1.ServicePort#name + */ + readonly name?: string; + + /** + * The port on each node on which this service is exposed when type=NodePort or LoadBalancer. Usually assigned by the system. If specified, it will be allocated to the service if unused or else creation of the service will fail. Default is to auto-allocate a port if the ServiceType of this Service requires one. More info: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport + * + * @default to auto-allocate a port if the ServiceType of this Service requires one. More info: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport + * @schema io.k8s.api.core.v1.ServicePort#nodePort + */ + readonly nodePort?: number; + + /** + * The port that will be exposed by this service. + * + * @schema io.k8s.api.core.v1.ServicePort#port + */ + readonly port: number; + + /** + * The IP protocol for this port. Supports "TCP", "UDP", and "SCTP". Default is TCP. + * + * @default TCP. + * @schema io.k8s.api.core.v1.ServicePort#protocol + */ + readonly protocol?: string; + + /** + * Number or name of the port to access on the pods targeted by the service. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. If this is a string, it will be looked up as a named port in the target Pod's container ports. If this is not specified, the value of the 'port' field is used (an identity map). This field is ignored for services with clusterIP=None, and should be omitted or set equal to the 'port' field. More info: https://kubernetes.io/docs/concepts/services-networking/service/#defining-a-service + * + * @schema io.k8s.api.core.v1.ServicePort#targetPort + */ + readonly targetPort?: IntOrString; + +} + +/** + * SessionAffinityConfig represents the configurations of session affinity. + * + * @schema io.k8s.api.core.v1.SessionAffinityConfig + */ +export interface SessionAffinityConfig { + /** + * clientIP contains the configurations of Client IP based session affinity. + * + * @schema io.k8s.api.core.v1.SessionAffinityConfig#clientIP + */ + readonly clientIP?: ClientIpConfig; + +} + +/** + * IngressBackend describes all endpoints for a given service and port. + * + * @schema io.k8s.api.networking.v1beta1.IngressBackend + */ +export interface IngressBackend { + /** + * Specifies the name of the referenced service. + * + * @schema io.k8s.api.networking.v1beta1.IngressBackend#serviceName + */ + readonly serviceName: string; + + /** + * Specifies the port of the referenced service. + * + * @schema io.k8s.api.networking.v1beta1.IngressBackend#servicePort + */ + readonly servicePort: IntOrString; + +} + +/** + * IngressRule represents the rules mapping the paths under a specified host to the related backend services. Incoming requests are first evaluated for a host match, then routed to the backend associated with the matching IngressRuleValue. + * + * @schema io.k8s.api.networking.v1beta1.IngressRule + */ +export interface IngressRule { + /** + * Host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the "host" part of the URI as defined in the RFC: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to the + IP in the Spec of the parent Ingress. +2. The `:` delimiter is not respected because ports are not allowed. + Currently the port of an Ingress is implicitly :80 for http and + :443 for https. +Both these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue. + * + * @schema io.k8s.api.networking.v1beta1.IngressRule#host + */ + readonly host?: string; + + /** + * @schema io.k8s.api.networking.v1beta1.IngressRule#http + */ + readonly http?: HttpIngressRuleValue; + +} + +/** + * IngressTLS describes the transport layer security associated with an Ingress. + * + * @schema io.k8s.api.networking.v1beta1.IngressTLS + */ +export interface IngressTls { + /** + * Hosts are a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified. + * + * @default the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified. + * @schema io.k8s.api.networking.v1beta1.IngressTLS#hosts + */ + readonly hosts?: string[]; + + /** + * SecretName is the name of the secret used to terminate SSL traffic on 443. Field is left optional to allow SSL routing based on SNI hostname alone. If the SNI host in a listener conflicts with the "Host" header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing. + * + * @schema io.k8s.api.networking.v1beta1.IngressTLS#secretName + */ + readonly secretName?: string; + +} + +/** + * NetworkPolicyEgressRule describes a particular set of traffic that is allowed out of pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and to. This type is beta-level in 1.8 + * + * @schema io.k8s.api.networking.v1.NetworkPolicyEgressRule + */ +export interface NetworkPolicyEgressRule { + /** + * List of destination ports for outgoing traffic. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list. + * + * @schema io.k8s.api.networking.v1.NetworkPolicyEgressRule#ports + */ + readonly ports?: NetworkPolicyPort[]; + + /** + * List of destinations for outgoing traffic of pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all destinations (traffic not restricted by destination). If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the to list. + * + * @schema io.k8s.api.networking.v1.NetworkPolicyEgressRule#to + */ + readonly to?: NetworkPolicyPeer[]; + +} + +/** + * NetworkPolicyIngressRule describes a particular set of traffic that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and from. + * + * @schema io.k8s.api.networking.v1.NetworkPolicyIngressRule + */ +export interface NetworkPolicyIngressRule { + /** + * List of sources which should be able to access the pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all sources (traffic not restricted by source). If this field is present and contains at least on item, this rule allows traffic only if the traffic matches at least one item in the from list. + * + * @schema io.k8s.api.networking.v1.NetworkPolicyIngressRule#from + */ + readonly from?: NetworkPolicyPeer[]; + + /** + * List of ports which should be made accessible on the pods selected for this rule. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list. + * + * @schema io.k8s.api.networking.v1.NetworkPolicyIngressRule#ports + */ + readonly ports?: NetworkPolicyPort[]; + +} + +/** + * AllowedCSIDriver represents a single inline CSI Driver that is allowed to be used. + * + * @schema io.k8s.api.policy.v1beta1.AllowedCSIDriver + */ +export interface AllowedCsiDriver { + /** + * Name is the registered name of the CSI driver + * + * @schema io.k8s.api.policy.v1beta1.AllowedCSIDriver#name + */ + readonly name: string; + +} + +/** + * AllowedFlexVolume represents a single Flexvolume that is allowed to be used. + * + * @schema io.k8s.api.policy.v1beta1.AllowedFlexVolume + */ +export interface AllowedFlexVolume { + /** + * driver is the name of the Flexvolume driver. + * + * @schema io.k8s.api.policy.v1beta1.AllowedFlexVolume#driver + */ + readonly driver: string; + +} + +/** + * AllowedHostPath defines the host volume conditions that will be enabled by a policy for pods to use. It requires the path prefix to be defined. + * + * @schema io.k8s.api.policy.v1beta1.AllowedHostPath + */ +export interface AllowedHostPath { + /** + * pathPrefix is the path prefix that the host volume must match. It does not support `*`. Trailing slashes are trimmed when validating the path prefix with a host path. + +Examples: `/foo` would allow `/foo`, `/foo/` and `/foo/bar` `/foo` would not allow `/food` or `/etc/foo` + * + * @schema io.k8s.api.policy.v1beta1.AllowedHostPath#pathPrefix + */ + readonly pathPrefix?: string; + + /** + * when set to true, will allow host volumes matching the pathPrefix only if all volume mounts are readOnly. + * + * @schema io.k8s.api.policy.v1beta1.AllowedHostPath#readOnly + */ + readonly readOnly?: boolean; + +} + +/** + * FSGroupStrategyOptions defines the strategy type and options used to create the strategy. + * + * @schema io.k8s.api.policy.v1beta1.FSGroupStrategyOptions + */ +export interface FsGroupStrategyOptions { + /** + * ranges are the allowed ranges of fs groups. If you would like to force a single fs group then supply a single range with the same start and end. Required for MustRunAs. + * + * @schema io.k8s.api.policy.v1beta1.FSGroupStrategyOptions#ranges + */ + readonly ranges?: IdRange[]; + + /** + * rule is the strategy that will dictate what FSGroup is used in the SecurityContext. + * + * @schema io.k8s.api.policy.v1beta1.FSGroupStrategyOptions#rule + */ + readonly rule?: string; + +} + +/** + * HostPortRange defines a range of host ports that will be enabled by a policy for pods to use. It requires both the start and end to be defined. + * + * @schema io.k8s.api.policy.v1beta1.HostPortRange + */ +export interface HostPortRange { + /** + * max is the end of the range, inclusive. + * + * @schema io.k8s.api.policy.v1beta1.HostPortRange#max + */ + readonly max: number; + + /** + * min is the start of the range, inclusive. + * + * @schema io.k8s.api.policy.v1beta1.HostPortRange#min + */ + readonly min: number; + +} + +/** + * RunAsGroupStrategyOptions defines the strategy type and any options used to create the strategy. + * + * @schema io.k8s.api.policy.v1beta1.RunAsGroupStrategyOptions + */ +export interface RunAsGroupStrategyOptions { + /** + * ranges are the allowed ranges of gids that may be used. If you would like to force a single gid then supply a single range with the same start and end. Required for MustRunAs. + * + * @schema io.k8s.api.policy.v1beta1.RunAsGroupStrategyOptions#ranges + */ + readonly ranges?: IdRange[]; + + /** + * rule is the strategy that will dictate the allowable RunAsGroup values that may be set. + * + * @schema io.k8s.api.policy.v1beta1.RunAsGroupStrategyOptions#rule + */ + readonly rule: string; + +} + +/** + * RunAsUserStrategyOptions defines the strategy type and any options used to create the strategy. + * + * @schema io.k8s.api.policy.v1beta1.RunAsUserStrategyOptions + */ +export interface RunAsUserStrategyOptions { + /** + * ranges are the allowed ranges of uids that may be used. If you would like to force a single uid then supply a single range with the same start and end. Required for MustRunAs. + * + * @schema io.k8s.api.policy.v1beta1.RunAsUserStrategyOptions#ranges + */ + readonly ranges?: IdRange[]; + + /** + * rule is the strategy that will dictate the allowable RunAsUser values that may be set. + * + * @schema io.k8s.api.policy.v1beta1.RunAsUserStrategyOptions#rule + */ + readonly rule: string; + +} + +/** + * RuntimeClassStrategyOptions define the strategy that will dictate the allowable RuntimeClasses for a pod. + * + * @schema io.k8s.api.policy.v1beta1.RuntimeClassStrategyOptions + */ +export interface RuntimeClassStrategyOptions { + /** + * allowedRuntimeClassNames is a whitelist of RuntimeClass names that may be specified on a pod. A value of "*" means that any RuntimeClass name is allowed, and must be the only item in the list. An empty list requires the RuntimeClassName field to be unset. + * + * @schema io.k8s.api.policy.v1beta1.RuntimeClassStrategyOptions#allowedRuntimeClassNames + */ + readonly allowedRuntimeClassNames: string[]; + + /** + * defaultRuntimeClassName is the default RuntimeClassName to set on the pod. The default MUST be allowed by the allowedRuntimeClassNames list. A value of nil does not mutate the Pod. + * + * @schema io.k8s.api.policy.v1beta1.RuntimeClassStrategyOptions#defaultRuntimeClassName + */ + readonly defaultRuntimeClassName?: string; + +} + +/** + * SELinuxStrategyOptions defines the strategy type and any options used to create the strategy. + * + * @schema io.k8s.api.policy.v1beta1.SELinuxStrategyOptions + */ +export interface SeLinuxStrategyOptions { + /** + * rule is the strategy that will dictate the allowable labels that may be set. + * + * @schema io.k8s.api.policy.v1beta1.SELinuxStrategyOptions#rule + */ + readonly rule: string; + + /** + * seLinuxOptions required to run as; required for MustRunAs More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ + * + * @schema io.k8s.api.policy.v1beta1.SELinuxStrategyOptions#seLinuxOptions + */ + readonly seLinuxOptions?: SeLinuxOptions; + +} + +/** + * SupplementalGroupsStrategyOptions defines the strategy type and options used to create the strategy. + * + * @schema io.k8s.api.policy.v1beta1.SupplementalGroupsStrategyOptions + */ +export interface SupplementalGroupsStrategyOptions { + /** + * ranges are the allowed ranges of supplemental groups. If you would like to force a single supplemental group then supply a single range with the same start and end. Required for MustRunAs. + * + * @schema io.k8s.api.policy.v1beta1.SupplementalGroupsStrategyOptions#ranges + */ + readonly ranges?: IdRange[]; + + /** + * rule is the strategy that will dictate what supplemental groups is used in the SecurityContext. + * + * @schema io.k8s.api.policy.v1beta1.SupplementalGroupsStrategyOptions#rule + */ + readonly rule?: string; + +} + +/** + * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds + * + * @schema IoK8SApimachineryPkgApisMetaV1DeleteOptionsKind + */ +export enum IoK8SApimachineryPkgApisMetaV1DeleteOptionsKind { + /** DeleteOptions */ + DELETE_OPTIONS = "DeleteOptions", +} + +/** + * Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions + */ +export interface Preconditions { + /** + * Specifies the target ResourceVersion + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions#resourceVersion + */ + readonly resourceVersion?: string; + + /** + * Specifies the target UID. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions#uid + */ + readonly uid?: string; + +} + +/** + * @schema io.k8s.apimachinery.pkg.util.intstr.IntOrString + */ +export class IntOrString { + public static fromString(value: string): IntOrString { + return new IntOrString(value); + } + public static fromNumber(value: number): IntOrString { + return new IntOrString(value); + } + private constructor(value: any) { + Object.defineProperty(this, 'resolve', { value: () => value }); + } +} + +/** + * EnvVar represents an environment variable present in a Container. + * + * @schema io.k8s.api.core.v1.EnvVar + */ +export interface EnvVar { + /** + * Name of the environment variable. Must be a C_IDENTIFIER. + * + * @schema io.k8s.api.core.v1.EnvVar#name + */ + readonly name: string; + + /** + * Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "". + * + * @default . + * @schema io.k8s.api.core.v1.EnvVar#value + */ + readonly value?: string; + + /** + * Source for the environment variable's value. Cannot be used if value is not empty. + * + * @schema io.k8s.api.core.v1.EnvVar#valueFrom + */ + readonly valueFrom?: EnvVarSource; + +} + +/** + * EnvFromSource represents the source of a set of ConfigMaps + * + * @schema io.k8s.api.core.v1.EnvFromSource + */ +export interface EnvFromSource { + /** + * The ConfigMap to select from + * + * @schema io.k8s.api.core.v1.EnvFromSource#configMapRef + */ + readonly configMapRef?: ConfigMapEnvSource; + + /** + * An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER. + * + * @schema io.k8s.api.core.v1.EnvFromSource#prefix + */ + readonly prefix?: string; + + /** + * The Secret to select from + * + * @schema io.k8s.api.core.v1.EnvFromSource#secretRef + */ + readonly secretRef?: SecretEnvSource; + +} + +/** + * VolumeMount describes a mounting of a Volume within a container. + * + * @schema io.k8s.api.core.v1.VolumeMount + */ +export interface VolumeMount { + /** + * Path within the container at which the volume should be mounted. Must not contain ':'. + * + * @schema io.k8s.api.core.v1.VolumeMount#mountPath + */ + readonly mountPath: string; + + /** + * mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10. + * + * @schema io.k8s.api.core.v1.VolumeMount#mountPropagation + */ + readonly mountPropagation?: string; + + /** + * This must match the Name of a Volume. + * + * @schema io.k8s.api.core.v1.VolumeMount#name + */ + readonly name: string; + + /** + * Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false. + * + * @default false. + * @schema io.k8s.api.core.v1.VolumeMount#readOnly + */ + readonly readOnly?: boolean; + + /** + * Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root). + * + * @default volume's root). + * @schema io.k8s.api.core.v1.VolumeMount#subPath + */ + readonly subPath?: string; + + /** + * Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to "" (volume's root). SubPathExpr and SubPath are mutually exclusive. This field is beta in 1.15. + * + * @default volume's root). SubPathExpr and SubPath are mutually exclusive. This field is beta in 1.15. + * @schema io.k8s.api.core.v1.VolumeMount#subPathExpr + */ + readonly subPathExpr?: string; + +} + +/** + * A topology selector requirement is a selector that matches given label. This is an alpha feature and may change in the future. + * + * @schema io.k8s.api.core.v1.TopologySelectorLabelRequirement + */ +export interface TopologySelectorLabelRequirement { + /** + * The label key that the selector applies to. + * + * @schema io.k8s.api.core.v1.TopologySelectorLabelRequirement#key + */ + readonly key: string; + + /** + * An array of string values. One value must match the label to be selected. Each entry in Values is ORed. + * + * @schema io.k8s.api.core.v1.TopologySelectorLabelRequirement#values + */ + readonly values: string[]; + +} + +/** + * VolumeAttachmentSource represents a volume that should be attached. Right now only PersistenVolumes can be attached via external attacher, in future we may allow also inline volumes in pods. Exactly one member can be set. + * + * @schema io.k8s.api.storage.v1beta1.VolumeAttachmentSource + */ +export interface VolumeAttachmentSource { + /** + * inlineVolumeSpec contains all the information necessary to attach a persistent volume defined by a pod's inline VolumeSource. This field is populated only for the CSIMigration feature. It contains translated fields from a pod's inline VolumeSource to a PersistentVolumeSpec. This field is alpha-level and is only honored by servers that enabled the CSIMigration feature. + * + * @schema io.k8s.api.storage.v1beta1.VolumeAttachmentSource#inlineVolumeSpec + */ + readonly inlineVolumeSpec?: PersistentVolumeSpec; + + /** + * Name of the persistent volume to attach. + * + * @schema io.k8s.api.storage.v1beta1.VolumeAttachmentSource#persistentVolumeName + */ + readonly persistentVolumeName?: string; + +} + +/** + * CSINodeDriver holds information about the specification of one CSI driver installed on a node + * + * @schema io.k8s.api.storage.v1beta1.CSINodeDriver + */ +export interface CsiNodeDriver { + /** + * This is the name of the CSI driver that this object refers to. This MUST be the same name returned by the CSI GetPluginName() call for that driver. + * + * @schema io.k8s.api.storage.v1beta1.CSINodeDriver#name + */ + readonly name: string; + + /** + * nodeID of the node from the driver point of view. This field enables Kubernetes to communicate with storage systems that do not share the same nomenclature for nodes. For example, Kubernetes may refer to a given node as "node1", but the storage system may refer to the same node as "nodeA". When Kubernetes issues a command to the storage system to attach a volume to a specific node, it can use this field to refer to the node name using the ID that the storage system will understand, e.g. "nodeA" instead of "node1". This field is required. + * + * @schema io.k8s.api.storage.v1beta1.CSINodeDriver#nodeID + */ + readonly nodeID: string; + + /** + * topologyKeys is the list of keys supported by the driver. When a driver is initialized on a cluster, it provides a set of topology keys that it understands (e.g. "company.com/zone", "company.com/region"). When a driver is initialized on a node, it provides the same topology keys along with values. Kubelet will expose these topology keys as labels on its own node object. When Kubernetes does topology aware provisioning, it can use this list to determine which labels it should retrieve from the node object and pass back to the driver. It is possible for different nodes to use different topology keys. This can be empty if driver does not support topology. + * + * @schema io.k8s.api.storage.v1beta1.CSINodeDriver#topologyKeys + */ + readonly topologyKeys?: string[]; + +} + +/** + * CustomResourceColumnDefinition specifies a column for server side printing. + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceColumnDefinition + */ +export interface CustomResourceColumnDefinition { + /** + * JSONPath is a simple JSON path, i.e. with array notation. + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceColumnDefinition#JSONPath + */ + readonly jsonPath?: string; + + /** + * description is a human readable description of this column. + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceColumnDefinition#description + */ + readonly description?: string; + + /** + * format is an optional OpenAPI type definition for this column. The 'name' format is applied to the primary identifier column to assist in clients identifying column is the resource name. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for more. + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceColumnDefinition#format + */ + readonly format?: string; + + /** + * name is a human readable name for the column. + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceColumnDefinition#name + */ + readonly name: string; + + /** + * priority is an integer defining the relative importance of this column compared to others. Lower numbers are considered higher priority. Columns that may be omitted in limited space scenarios should be given a higher priority. + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceColumnDefinition#priority + */ + readonly priority?: number; + + /** + * type is an OpenAPI type definition for this column. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for more. + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceColumnDefinition#type + */ + readonly type: string; + +} + +/** + * CustomResourceConversion describes how to convert different versions of a CR. + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceConversion + */ +export interface CustomResourceConversion { + /** + * ConversionReviewVersions is an ordered list of preferred `ConversionReview` versions the Webhook expects. API server will try to use first version in the list which it supports. If none of the versions specified in this list supported by API server, conversion will fail for this object. If a persisted Webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail. Default to `['v1beta1']`. + * + * @default v1beta1']`. + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceConversion#conversionReviewVersions + */ + readonly conversionReviewVersions?: string[]; + + /** + * `strategy` specifies the conversion strategy. Allowed values are: - `None`: The converter only change the apiVersion and would not touch any other field in the CR. - `Webhook`: API Server will call to an external webhook to do the conversion. Additional information + is needed for this option. This requires spec.preserveUnknownFields to be false. + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceConversion#strategy + */ + readonly strategy: string; + + /** + * `webhookClientConfig` is the instructions for how to call the webhook if strategy is `Webhook`. This field is alpha-level and is only honored by servers that enable the CustomResourceWebhookConversion feature. + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceConversion#webhookClientConfig + */ + readonly webhookClientConfig?: WebhookClientConfig; + +} + +/** + * CustomResourceDefinitionNames indicates the names to serve this CustomResourceDefinition + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionNames + */ +export interface CustomResourceDefinitionNames { + /** + * Categories is a list of grouped resources custom resources belong to (e.g. 'all') + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionNames#categories + */ + readonly categories?: string[]; + + /** + * Kind is the serialized kind of the resource. It is normally CamelCase and singular. + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionNames#kind + */ + readonly kind: string; + + /** + * ListKind is the serialized kind of the list for this resource. Defaults to List. + * + * @default kind>List. + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionNames#listKind + */ + readonly listKind?: string; + + /** + * Plural is the plural name of the resource to serve. It must match the name of the CustomResourceDefinition-registration too: plural.group and it must be all lowercase. + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionNames#plural + */ + readonly plural: string; + + /** + * ShortNames are short names for the resource. It must be all lowercase. + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionNames#shortNames + */ + readonly shortNames?: string[]; + + /** + * Singular is the singular name of the resource. It must be all lowercase Defaults to lowercased + * + * @default lowercased + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionNames#singular + */ + readonly singular?: string; + +} + +/** + * CustomResourceSubresources defines the status and scale subresources for CustomResources. + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresources + */ +export interface CustomResourceSubresources { + /** + * Scale denotes the scale subresource for CustomResources + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresources#scale + */ + readonly scale?: CustomResourceSubresourceScale; + + /** + * Status denotes the status subresource for CustomResources + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresources#status + */ + readonly status?: any; + +} + +/** + * CustomResourceValidation is a list of validation methods for CustomResources. + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceValidation + */ +export interface CustomResourceValidation { + /** + * OpenAPIV3Schema is the OpenAPI v3 schema to be validated against. + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceValidation#openAPIV3Schema + */ + readonly openAPIV3Schema?: JsonSchemaProps; + +} + +/** + * CustomResourceDefinitionVersion describes a version for CRD. + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionVersion + */ +export interface CustomResourceDefinitionVersion { + /** + * AdditionalPrinterColumns are additional columns shown e.g. in kubectl next to the name. Defaults to a created-at column. Top-level and per-version columns are mutually exclusive. Per-version columns must not all be set to identical values (top-level columns should be used instead) This field is alpha-level and is only honored by servers that enable the CustomResourceWebhookConversion feature. NOTE: CRDs created prior to 1.13 populated the top-level additionalPrinterColumns field by default. To apply an update that changes to per-version additionalPrinterColumns, the top-level additionalPrinterColumns field must be explicitly set to null + * + * @default a created-at column. Top-level and per-version columns are mutually exclusive. Per-version columns must not all be set to identical values (top-level columns should be used instead) This field is alpha-level and is only honored by servers that enable the CustomResourceWebhookConversion feature. NOTE: CRDs created prior to 1.13 populated the top-level additionalPrinterColumns field by default. To apply an update that changes to per-version additionalPrinterColumns, the top-level additionalPrinterColumns field must be explicitly set to null + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionVersion#additionalPrinterColumns + */ + readonly additionalPrinterColumns?: CustomResourceColumnDefinition[]; + + /** + * Name is the version name, e.g. “v1”, “v2beta1”, etc. + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionVersion#name + */ + readonly name: string; + + /** + * Schema describes the schema for CustomResource used in validation, pruning, and defaulting. Top-level and per-version schemas are mutually exclusive. Per-version schemas must not all be set to identical values (top-level validation schema should be used instead) This field is alpha-level and is only honored by servers that enable the CustomResourceWebhookConversion feature. + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionVersion#schema + */ + readonly schema?: CustomResourceValidation; + + /** + * Served is a flag enabling/disabling this version from being served via REST APIs + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionVersion#served + */ + readonly served: boolean; + + /** + * Storage flags the version as storage version. There must be exactly one flagged as storage version. + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionVersion#storage + */ + readonly storage: boolean; + + /** + * Subresources describes the subresources for CustomResource Top-level and per-version subresources are mutually exclusive. Per-version subresources must not all be set to identical values (top-level subresources should be used instead) This field is alpha-level and is only honored by servers that enable the CustomResourceWebhookConversion feature. + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionVersion#subresources + */ + readonly subresources?: CustomResourceSubresources; + +} + +/** + * StatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.StatusCause + */ +export interface StatusCause { + /** + * The field of the resource that has caused this error, as named by its JSON serialization. May include dot and postfix notation for nested attributes. Arrays are zero-indexed. Fields may appear more than once in an array of causes due to fields having multiple errors. Optional. + +Examples: + "name" - the field "name" on the current resource + "items[0].name" - the field "name" on the first array entry in "items" + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.StatusCause#field + */ + readonly field?: string; + + /** + * A human-readable description of the cause of the error. This field may be presented as-is to a reader. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.StatusCause#message + */ + readonly message?: string; + + /** + * A machine-readable description of the cause of the error. If this value is empty there is no information available. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.StatusCause#reason + */ + readonly reason?: string; + +} + +/** + * ServiceReference holds a reference to Service.legacy.k8s.io + * + * @schema io.k8s.api.admissionregistration.v1beta1.ServiceReference + */ +export interface ServiceReference { + /** + * `name` is the name of the service. Required + * + * @schema io.k8s.api.admissionregistration.v1beta1.ServiceReference#name + */ + readonly name: string; + + /** + * `namespace` is the namespace of the service. Required + * + * @schema io.k8s.api.admissionregistration.v1beta1.ServiceReference#namespace + */ + readonly namespace: string; + + /** + * `path` is an optional URL path which will be sent in any request to this service. + * + * @schema io.k8s.api.admissionregistration.v1beta1.ServiceReference#path + */ + readonly path?: string; + + /** + * If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive). + * + * @default 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive). + * @schema io.k8s.api.admissionregistration.v1beta1.ServiceReference#port + */ + readonly port?: number; + +} + +/** + * Initializer is information about an initializer that has not yet completed. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.Initializer + */ +export interface Initializer { + /** + * name of the process that is responsible for initializing this object. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.Initializer#name + */ + readonly name: string; + +} + +/** + * A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelectorRequirement + */ +export interface LabelSelectorRequirement { + /** + * key is the label key that the selector applies to. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelectorRequirement#key + */ + readonly key: string; + + /** + * operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelectorRequirement#operator + */ + readonly operator: string; + + /** + * values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + * + * @schema io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelectorRequirement#values + */ + readonly values?: string[]; + +} + +/** + * Spec to control the desired behavior of daemon set rolling update. + * + * @schema io.k8s.api.extensions.v1beta1.RollingUpdateDaemonSet + */ +export interface RollingUpdateDaemonSet { + /** + * The maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0. Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their pods stopped for an update at any given time. The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update. + * + * @schema io.k8s.api.extensions.v1beta1.RollingUpdateDaemonSet#maxUnavailable + */ + readonly maxUnavailable?: IntOrString; + +} + +/** + * Spec to control the desired behavior of rolling update. + * + * @schema io.k8s.api.apps.v1beta2.RollingUpdateDeployment + */ +export interface RollingUpdateDeployment { + /** + * The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. Defaults to 25%. Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new ReplicaSet can be scaled up further, ensuring that total number of pods running at any time during the update is at most 130% of desired pods. + * + * @default 25%. Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new ReplicaSet can be scaled up further, ensuring that total number of pods running at any time during the update is at most 130% of desired pods. + * @schema io.k8s.api.apps.v1beta2.RollingUpdateDeployment#maxSurge + */ + readonly maxSurge?: IntOrString; + + /** + * The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. Defaults to 25%. Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old ReplicaSet can be scaled down further, followed by scaling up the new ReplicaSet, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods. + * + * @default 25%. Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old ReplicaSet can be scaled down further, followed by scaling up the new ReplicaSet, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods. + * @schema io.k8s.api.apps.v1beta2.RollingUpdateDeployment#maxUnavailable + */ + readonly maxUnavailable?: IntOrString; + +} + +/** + * RollingUpdateStatefulSetStrategy is used to communicate parameter for RollingUpdateStatefulSetStrategyType. + * + * @schema io.k8s.api.apps.v1beta2.RollingUpdateStatefulSetStrategy + */ +export interface RollingUpdateStatefulSetStrategy { + /** + * Partition indicates the ordinal at which the StatefulSet should be partitioned. Default value is 0. + * + * @schema io.k8s.api.apps.v1beta2.RollingUpdateStatefulSetStrategy#partition + */ + readonly partition?: number; + +} + +/** + * WebhookThrottleConfig holds the configuration for throttling events + * + * @schema io.k8s.api.auditregistration.v1alpha1.WebhookThrottleConfig + */ +export interface WebhookThrottleConfig { + /** + * ThrottleBurst is the maximum number of events sent at the same moment default 15 QPS + * + * @schema io.k8s.api.auditregistration.v1alpha1.WebhookThrottleConfig#burst + */ + readonly burst?: number; + + /** + * ThrottleQPS maximum number of batches per second default 10 QPS + * + * @schema io.k8s.api.auditregistration.v1alpha1.WebhookThrottleConfig#qps + */ + readonly qps?: number; + +} + +/** + * ExternalMetricSource indicates how to scale on a metric not associated with any Kubernetes object (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster). + * + * @schema io.k8s.api.autoscaling.v2beta2.ExternalMetricSource + */ +export interface ExternalMetricSource { + /** + * metric identifies the target metric by name and selector + * + * @schema io.k8s.api.autoscaling.v2beta2.ExternalMetricSource#metric + */ + readonly metric: MetricIdentifier; + + /** + * target specifies the target value for the given metric + * + * @schema io.k8s.api.autoscaling.v2beta2.ExternalMetricSource#target + */ + readonly target: MetricTarget; + +} + +/** + * ObjectMetricSource indicates how to scale on a metric describing a kubernetes object (for example, hits-per-second on an Ingress object). + * + * @schema io.k8s.api.autoscaling.v2beta2.ObjectMetricSource + */ +export interface ObjectMetricSource { + /** + * @schema io.k8s.api.autoscaling.v2beta2.ObjectMetricSource#describedObject + */ + readonly describedObject: CrossVersionObjectReference; + + /** + * metric identifies the target metric by name and selector + * + * @schema io.k8s.api.autoscaling.v2beta2.ObjectMetricSource#metric + */ + readonly metric: MetricIdentifier; + + /** + * target specifies the target value for the given metric + * + * @schema io.k8s.api.autoscaling.v2beta2.ObjectMetricSource#target + */ + readonly target: MetricTarget; + +} + +/** + * PodsMetricSource indicates how to scale on a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value. + * + * @schema io.k8s.api.autoscaling.v2beta2.PodsMetricSource + */ +export interface PodsMetricSource { + /** + * metric identifies the target metric by name and selector + * + * @schema io.k8s.api.autoscaling.v2beta2.PodsMetricSource#metric + */ + readonly metric: MetricIdentifier; + + /** + * target specifies the target value for the given metric + * + * @schema io.k8s.api.autoscaling.v2beta2.PodsMetricSource#target + */ + readonly target: MetricTarget; + +} + +/** + * ResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). The values will be averaged together before being compared to the target. Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source. Only one "target" type should be set. + * + * @schema io.k8s.api.autoscaling.v2beta2.ResourceMetricSource + */ +export interface ResourceMetricSource { + /** + * name is the name of the resource in question. + * + * @schema io.k8s.api.autoscaling.v2beta2.ResourceMetricSource#name + */ + readonly name: string; + + /** + * target specifies the target value for the given metric + * + * @schema io.k8s.api.autoscaling.v2beta2.ResourceMetricSource#target + */ + readonly target: MetricTarget; + +} + +/** + * ConfigMapNodeConfigSource contains the information to reference a ConfigMap as a config source for the Node. + * + * @schema io.k8s.api.core.v1.ConfigMapNodeConfigSource + */ +export interface ConfigMapNodeConfigSource { + /** + * KubeletConfigKey declares which key of the referenced ConfigMap corresponds to the KubeletConfiguration structure This field is required in all cases. + * + * @schema io.k8s.api.core.v1.ConfigMapNodeConfigSource#kubeletConfigKey + */ + readonly kubeletConfigKey: string; + + /** + * Name is the metadata.name of the referenced ConfigMap. This field is required in all cases. + * + * @schema io.k8s.api.core.v1.ConfigMapNodeConfigSource#name + */ + readonly name: string; + + /** + * Namespace is the metadata.namespace of the referenced ConfigMap. This field is required in all cases. + * + * @schema io.k8s.api.core.v1.ConfigMapNodeConfigSource#namespace + */ + readonly namespace: string; + + /** + * ResourceVersion is the metadata.ResourceVersion of the referenced ConfigMap. This field is forbidden in Node.Spec, and required in Node.Status. + * + * @schema io.k8s.api.core.v1.ConfigMapNodeConfigSource#resourceVersion + */ + readonly resourceVersion?: string; + + /** + * UID is the metadata.UID of the referenced ConfigMap. This field is forbidden in Node.Spec, and required in Node.Status. + * + * @schema io.k8s.api.core.v1.ConfigMapNodeConfigSource#uid + */ + readonly uid?: string; + +} + +/** + * SecretReference represents a Secret Reference. It has enough information to retrieve secret in any namespace + * + * @schema io.k8s.api.core.v1.SecretReference + */ +export interface SecretReference { + /** + * Name is unique within a namespace to reference a secret resource. + * + * @schema io.k8s.api.core.v1.SecretReference#name + */ + readonly name?: string; + + /** + * Namespace defines the space within which the secret name must be unique. + * + * @schema io.k8s.api.core.v1.SecretReference#namespace + */ + readonly namespace?: string; + +} + +/** + * A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms. + * + * @schema io.k8s.api.core.v1.NodeSelector + */ +export interface NodeSelector { + /** + * Required. A list of node selector terms. The terms are ORed. + * + * @schema io.k8s.api.core.v1.NodeSelector#nodeSelectorTerms + */ + readonly nodeSelectorTerms: NodeSelectorTerm[]; + +} + +/** + * Node affinity is a group of node affinity scheduling rules. + * + * @schema io.k8s.api.core.v1.NodeAffinity + */ +export interface NodeAffinity { + /** + * The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred. + * + * @schema io.k8s.api.core.v1.NodeAffinity#preferredDuringSchedulingIgnoredDuringExecution + */ + readonly preferredDuringSchedulingIgnoredDuringExecution?: PreferredSchedulingTerm[]; + + /** + * If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node. + * + * @schema io.k8s.api.core.v1.NodeAffinity#requiredDuringSchedulingIgnoredDuringExecution + */ + readonly requiredDuringSchedulingIgnoredDuringExecution?: NodeSelector; + +} + +/** + * Pod affinity is a group of inter pod affinity scheduling rules. + * + * @schema io.k8s.api.core.v1.PodAffinity + */ +export interface PodAffinity { + /** + * The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. + * + * @schema io.k8s.api.core.v1.PodAffinity#preferredDuringSchedulingIgnoredDuringExecution + */ + readonly preferredDuringSchedulingIgnoredDuringExecution?: WeightedPodAffinityTerm[]; + + /** + * If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. + * + * @schema io.k8s.api.core.v1.PodAffinity#requiredDuringSchedulingIgnoredDuringExecution + */ + readonly requiredDuringSchedulingIgnoredDuringExecution?: PodAffinityTerm[]; + +} + +/** + * Pod anti affinity is a group of inter pod anti affinity scheduling rules. + * + * @schema io.k8s.api.core.v1.PodAntiAffinity + */ +export interface PodAntiAffinity { + /** + * The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. + * + * @schema io.k8s.api.core.v1.PodAntiAffinity#preferredDuringSchedulingIgnoredDuringExecution + */ + readonly preferredDuringSchedulingIgnoredDuringExecution?: WeightedPodAffinityTerm[]; + + /** + * If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. + * + * @schema io.k8s.api.core.v1.PodAntiAffinity#requiredDuringSchedulingIgnoredDuringExecution + */ + readonly requiredDuringSchedulingIgnoredDuringExecution?: PodAffinityTerm[]; + +} + +/** + * Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted. + * + * @schema io.k8s.api.core.v1.Lifecycle + */ +export interface Lifecycle { + /** + * PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks + * + * @schema io.k8s.api.core.v1.Lifecycle#postStart + */ + readonly postStart?: Handler; + + /** + * PreStop is called immediately before a container is terminated due to an API request or management event such as liveness probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The reason for termination is passed to the handler. The Pod's termination grace period countdown begins before the PreStop hooked is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period. Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks + * + * @schema io.k8s.api.core.v1.Lifecycle#preStop + */ + readonly preStop?: Handler; + +} + +/** + * Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic. + * + * @schema io.k8s.api.core.v1.Probe + */ +export interface Probe { + /** + * One and only one of the following should be specified. Exec specifies the action to take. + * + * @schema io.k8s.api.core.v1.Probe#exec + */ + readonly exec?: ExecAction; + + /** + * Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. + * + * @default 3. Minimum value is 1. + * @schema io.k8s.api.core.v1.Probe#failureThreshold + */ + readonly failureThreshold?: number; + + /** + * HTTPGet specifies the http request to perform. + * + * @schema io.k8s.api.core.v1.Probe#httpGet + */ + readonly httpGet?: HttpGetAction; + + /** + * Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + * + * @schema io.k8s.api.core.v1.Probe#initialDelaySeconds + */ + readonly initialDelaySeconds?: number; + + /** + * How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. + * + * @default 10 seconds. Minimum value is 1. + * @schema io.k8s.api.core.v1.Probe#periodSeconds + */ + readonly periodSeconds?: number; + + /** + * Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness. Minimum value is 1. + * + * @default 1. Must be 1 for liveness. Minimum value is 1. + * @schema io.k8s.api.core.v1.Probe#successThreshold + */ + readonly successThreshold?: number; + + /** + * TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported + * + * @schema io.k8s.api.core.v1.Probe#tcpSocket + */ + readonly tcpSocket?: TcpSocketAction; + + /** + * Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + * + * @default 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + * @schema io.k8s.api.core.v1.Probe#timeoutSeconds + */ + readonly timeoutSeconds?: number; + +} + +/** + * ContainerPort represents a network port in a single container. + * + * @schema io.k8s.api.core.v1.ContainerPort + */ +export interface ContainerPort { + /** + * Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536. + * + * @schema io.k8s.api.core.v1.ContainerPort#containerPort + */ + readonly containerPort: number; + + /** + * What host IP to bind the external port to. + * + * @schema io.k8s.api.core.v1.ContainerPort#hostIP + */ + readonly hostIP?: string; + + /** + * Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this. + * + * @schema io.k8s.api.core.v1.ContainerPort#hostPort + */ + readonly hostPort?: number; + + /** + * If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services. + * + * @schema io.k8s.api.core.v1.ContainerPort#name + */ + readonly name?: string; + + /** + * Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP". + * + * @default TCP". + * @schema io.k8s.api.core.v1.ContainerPort#protocol + */ + readonly protocol?: string; + +} + +/** + * SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence. + * + * @schema io.k8s.api.core.v1.SecurityContext + */ +export interface SecurityContext { + /** + * AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN + * + * @schema io.k8s.api.core.v1.SecurityContext#allowPrivilegeEscalation + */ + readonly allowPrivilegeEscalation?: boolean; + + /** + * The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime. + * + * @default the default set of capabilities granted by the container runtime. + * @schema io.k8s.api.core.v1.SecurityContext#capabilities + */ + readonly capabilities?: Capabilities; + + /** + * Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false. + * + * @default false. + * @schema io.k8s.api.core.v1.SecurityContext#privileged + */ + readonly privileged?: boolean; + + /** + * procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled. + * + * @schema io.k8s.api.core.v1.SecurityContext#procMount + */ + readonly procMount?: string; + + /** + * Whether this container has a read-only root filesystem. Default is false. + * + * @default false. + * @schema io.k8s.api.core.v1.SecurityContext#readOnlyRootFilesystem + */ + readonly readOnlyRootFilesystem?: boolean; + + /** + * The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. + * + * @schema io.k8s.api.core.v1.SecurityContext#runAsGroup + */ + readonly runAsGroup?: number; + + /** + * Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. + * + * @schema io.k8s.api.core.v1.SecurityContext#runAsNonRoot + */ + readonly runAsNonRoot?: boolean; + + /** + * The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. + * + * @default user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. + * @schema io.k8s.api.core.v1.SecurityContext#runAsUser + */ + readonly runAsUser?: number; + + /** + * The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. + * + * @schema io.k8s.api.core.v1.SecurityContext#seLinuxOptions + */ + readonly seLinuxOptions?: SeLinuxOptions; + + /** + * Windows security options. + * + * @schema io.k8s.api.core.v1.SecurityContext#windowsOptions + */ + readonly windowsOptions?: WindowsSecurityContextOptions; + +} + +/** + * volumeDevice describes a mapping of a raw block device within a container. + * + * @schema io.k8s.api.core.v1.VolumeDevice + */ +export interface VolumeDevice { + /** + * devicePath is the path inside of the container that the device will be mapped to. + * + * @schema io.k8s.api.core.v1.VolumeDevice#devicePath + */ + readonly devicePath: string; + + /** + * name must match the name of a persistentVolumeClaim in the pod + * + * @schema io.k8s.api.core.v1.VolumeDevice#name + */ + readonly name: string; + +} + +/** + * PodDNSConfigOption defines DNS resolver options of a pod. + * + * @schema io.k8s.api.core.v1.PodDNSConfigOption + */ +export interface PodDnsConfigOption { + /** + * Required. + * + * @schema io.k8s.api.core.v1.PodDNSConfigOption#name + */ + readonly name?: string; + + /** + * @schema io.k8s.api.core.v1.PodDNSConfigOption#value + */ + readonly value?: string; + +} + +/** + * SELinuxOptions are the labels to be applied to the container + * + * @schema io.k8s.api.core.v1.SELinuxOptions + */ +export interface SeLinuxOptions { + /** + * Level is SELinux level label that applies to the container. + * + * @schema io.k8s.api.core.v1.SELinuxOptions#level + */ + readonly level?: string; + + /** + * Role is a SELinux role label that applies to the container. + * + * @schema io.k8s.api.core.v1.SELinuxOptions#role + */ + readonly role?: string; + + /** + * Type is a SELinux type label that applies to the container. + * + * @schema io.k8s.api.core.v1.SELinuxOptions#type + */ + readonly type?: string; + + /** + * User is a SELinux user label that applies to the container. + * + * @schema io.k8s.api.core.v1.SELinuxOptions#user + */ + readonly user?: string; + +} + +/** + * Sysctl defines a kernel parameter to be set + * + * @schema io.k8s.api.core.v1.Sysctl + */ +export interface Sysctl { + /** + * Name of a property to set + * + * @schema io.k8s.api.core.v1.Sysctl#name + */ + readonly name: string; + + /** + * Value of a property to set + * + * @schema io.k8s.api.core.v1.Sysctl#value + */ + readonly value: string; + +} + +/** + * WindowsSecurityContextOptions contain Windows-specific options and credentials. + * + * @schema io.k8s.api.core.v1.WindowsSecurityContextOptions + */ +export interface WindowsSecurityContextOptions { + /** + * GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field. This field is alpha-level and is only honored by servers that enable the WindowsGMSA feature flag. + * + * @schema io.k8s.api.core.v1.WindowsSecurityContextOptions#gmsaCredentialSpec + */ + readonly gmsaCredentialSpec?: string; + + /** + * GMSACredentialSpecName is the name of the GMSA credential spec to use. This field is alpha-level and is only honored by servers that enable the WindowsGMSA feature flag. + * + * @schema io.k8s.api.core.v1.WindowsSecurityContextOptions#gmsaCredentialSpecName + */ + readonly gmsaCredentialSpecName?: string; + +} + +/** + * AzureFile represents an Azure File Service mount on the host and bind mount to the pod. + * + * @schema io.k8s.api.core.v1.AzureFileVolumeSource + */ +export interface AzureFileVolumeSource { + /** + * Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. + * + * @default false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. + * @schema io.k8s.api.core.v1.AzureFileVolumeSource#readOnly + */ + readonly readOnly?: boolean; + + /** + * the name of secret that contains Azure Storage Account Name and Key + * + * @schema io.k8s.api.core.v1.AzureFileVolumeSource#secretName + */ + readonly secretName: string; + + /** + * Share Name + * + * @schema io.k8s.api.core.v1.AzureFileVolumeSource#shareName + */ + readonly shareName: string; + +} + +/** + * Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling. + * + * @schema io.k8s.api.core.v1.CephFSVolumeSource + */ +export interface CephFsVolumeSource { + /** + * Required: Monitors is a collection of Ceph monitors More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it + * + * @schema io.k8s.api.core.v1.CephFSVolumeSource#monitors + */ + readonly monitors: string[]; + + /** + * Optional: Used as the mounted root, rather than the full Ceph tree, default is / + * + * @schema io.k8s.api.core.v1.CephFSVolumeSource#path + */ + readonly path?: string; + + /** + * Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it + * + * @default false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it + * @schema io.k8s.api.core.v1.CephFSVolumeSource#readOnly + */ + readonly readOnly?: boolean; + + /** + * Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it + * + * @schema io.k8s.api.core.v1.CephFSVolumeSource#secretFile + */ + readonly secretFile?: string; + + /** + * Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it + * + * @schema io.k8s.api.core.v1.CephFSVolumeSource#secretRef + */ + readonly secretRef?: LocalObjectReference; + + /** + * Optional: User is the rados user name, default is admin More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it + * + * @schema io.k8s.api.core.v1.CephFSVolumeSource#user + */ + readonly user?: string; + +} + +/** + * Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling. + * + * @schema io.k8s.api.core.v1.CinderVolumeSource + */ +export interface CinderVolumeSource { + /** + * Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md + * + * @schema io.k8s.api.core.v1.CinderVolumeSource#fsType + */ + readonly fsType?: string; + + /** + * Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md + * + * @default false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md + * @schema io.k8s.api.core.v1.CinderVolumeSource#readOnly + */ + readonly readOnly?: boolean; + + /** + * Optional: points to a secret object containing parameters used to connect to OpenStack. + * + * @schema io.k8s.api.core.v1.CinderVolumeSource#secretRef + */ + readonly secretRef?: LocalObjectReference; + + /** + * volume id used to identify the volume in cinder More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md + * + * @schema io.k8s.api.core.v1.CinderVolumeSource#volumeID + */ + readonly volumeID: string; + +} + +/** + * Adapts a ConfigMap into a volume. + +The contents of the target ConfigMap's Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling. + * + * @schema io.k8s.api.core.v1.ConfigMapVolumeSource + */ +export interface ConfigMapVolumeSource { + /** + * Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. + * + * @default 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. + * @schema io.k8s.api.core.v1.ConfigMapVolumeSource#defaultMode + */ + readonly defaultMode?: number; + + /** + * If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. + * + * @schema io.k8s.api.core.v1.ConfigMapVolumeSource#items + */ + readonly items?: KeyToPath[]; + + /** + * Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + * + * @schema io.k8s.api.core.v1.ConfigMapVolumeSource#name + */ + readonly name?: string; + + /** + * Specify whether the ConfigMap or its keys must be defined + * + * @schema io.k8s.api.core.v1.ConfigMapVolumeSource#optional + */ + readonly optional?: boolean; + +} + +/** + * Represents a source location of a volume to mount, managed by an external CSI driver + * + * @schema io.k8s.api.core.v1.CSIVolumeSource + */ +export interface CsiVolumeSource { + /** + * Driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster. + * + * @schema io.k8s.api.core.v1.CSIVolumeSource#driver + */ + readonly driver: string; + + /** + * Filesystem type to mount. Ex. "ext4", "xfs", "ntfs". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply. + * + * @schema io.k8s.api.core.v1.CSIVolumeSource#fsType + */ + readonly fsType?: string; + + /** + * NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secret references are passed. + * + * @schema io.k8s.api.core.v1.CSIVolumeSource#nodePublishSecretRef + */ + readonly nodePublishSecretRef?: LocalObjectReference; + + /** + * Specifies a read-only configuration for the volume. Defaults to false (read/write). + * + * @default false (read/write). + * @schema io.k8s.api.core.v1.CSIVolumeSource#readOnly + */ + readonly readOnly?: boolean; + + /** + * VolumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values. + * + * @schema io.k8s.api.core.v1.CSIVolumeSource#volumeAttributes + */ + readonly volumeAttributes?: { [key: string]: string }; + +} + +/** + * DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling. + * + * @schema io.k8s.api.core.v1.DownwardAPIVolumeSource + */ +export interface DownwardApiVolumeSource { + /** + * Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. + * + * @default 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. + * @schema io.k8s.api.core.v1.DownwardAPIVolumeSource#defaultMode + */ + readonly defaultMode?: number; + + /** + * Items is a list of downward API volume file + * + * @schema io.k8s.api.core.v1.DownwardAPIVolumeSource#items + */ + readonly items?: DownwardApiVolumeFile[]; + +} + +/** + * Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling. + * + * @schema io.k8s.api.core.v1.EmptyDirVolumeSource + */ +export interface EmptyDirVolumeSource { + /** + * What type of storage medium should back this directory. The default is "" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir + * + * @schema io.k8s.api.core.v1.EmptyDirVolumeSource#medium + */ + readonly medium?: string; + + /** + * Total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir + * + * @schema io.k8s.api.core.v1.EmptyDirVolumeSource#sizeLimit + */ + readonly sizeLimit?: Quantity; + +} + +/** + * FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin. + * + * @schema io.k8s.api.core.v1.FlexVolumeSource + */ +export interface FlexVolumeSource { + /** + * Driver is the name of the driver to use for this volume. + * + * @schema io.k8s.api.core.v1.FlexVolumeSource#driver + */ + readonly driver: string; + + /** + * Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". The default filesystem depends on FlexVolume script. + * + * @schema io.k8s.api.core.v1.FlexVolumeSource#fsType + */ + readonly fsType?: string; + + /** + * Optional: Extra command options if any. + * + * @schema io.k8s.api.core.v1.FlexVolumeSource#options + */ + readonly options?: { [key: string]: string }; + + /** + * Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. + * + * @default false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. + * @schema io.k8s.api.core.v1.FlexVolumeSource#readOnly + */ + readonly readOnly?: boolean; + + /** + * Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts. + * + * @schema io.k8s.api.core.v1.FlexVolumeSource#secretRef + */ + readonly secretRef?: LocalObjectReference; + +} + +/** + * Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling. + +DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container. + * + * @schema io.k8s.api.core.v1.GitRepoVolumeSource + */ +export interface GitRepoVolumeSource { + /** + * Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name. + * + * @schema io.k8s.api.core.v1.GitRepoVolumeSource#directory + */ + readonly directory?: string; + + /** + * Repository URL + * + * @schema io.k8s.api.core.v1.GitRepoVolumeSource#repository + */ + readonly repository: string; + + /** + * Commit hash for the specified revision. + * + * @schema io.k8s.api.core.v1.GitRepoVolumeSource#revision + */ + readonly revision?: string; + +} + +/** + * Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling. + * + * @schema io.k8s.api.core.v1.GlusterfsVolumeSource + */ +export interface GlusterfsVolumeSource { + /** + * EndpointsName is the endpoint name that details Glusterfs topology. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod + * + * @schema io.k8s.api.core.v1.GlusterfsVolumeSource#endpoints + */ + readonly endpoints: string; + + /** + * Path is the Glusterfs volume path. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod + * + * @schema io.k8s.api.core.v1.GlusterfsVolumeSource#path + */ + readonly path: string; + + /** + * ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod + * + * @default false. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod + * @schema io.k8s.api.core.v1.GlusterfsVolumeSource#readOnly + */ + readonly readOnly?: boolean; + +} + +/** + * Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling. + * + * @schema io.k8s.api.core.v1.ISCSIVolumeSource + */ +export interface IscsiVolumeSource { + /** + * whether support iSCSI Discovery CHAP authentication + * + * @schema io.k8s.api.core.v1.ISCSIVolumeSource#chapAuthDiscovery + */ + readonly chapAuthDiscovery?: boolean; + + /** + * whether support iSCSI Session CHAP authentication + * + * @schema io.k8s.api.core.v1.ISCSIVolumeSource#chapAuthSession + */ + readonly chapAuthSession?: boolean; + + /** + * Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi + * + * @schema io.k8s.api.core.v1.ISCSIVolumeSource#fsType + */ + readonly fsType?: string; + + /** + * Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface : will be created for the connection. + * + * @schema io.k8s.api.core.v1.ISCSIVolumeSource#initiatorName + */ + readonly initiatorName?: string; + + /** + * Target iSCSI Qualified Name. + * + * @schema io.k8s.api.core.v1.ISCSIVolumeSource#iqn + */ + readonly iqn: string; + + /** + * iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp). + * + * @default default' (tcp). + * @schema io.k8s.api.core.v1.ISCSIVolumeSource#iscsiInterface + */ + readonly iscsiInterface?: string; + + /** + * iSCSI Target Lun number. + * + * @schema io.k8s.api.core.v1.ISCSIVolumeSource#lun + */ + readonly lun: number; + + /** + * iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260). + * + * @schema io.k8s.api.core.v1.ISCSIVolumeSource#portals + */ + readonly portals?: string[]; + + /** + * ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. + * + * @default false. + * @schema io.k8s.api.core.v1.ISCSIVolumeSource#readOnly + */ + readonly readOnly?: boolean; + + /** + * CHAP Secret for iSCSI target and initiator authentication + * + * @schema io.k8s.api.core.v1.ISCSIVolumeSource#secretRef + */ + readonly secretRef?: LocalObjectReference; + + /** + * iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260). + * + * @schema io.k8s.api.core.v1.ISCSIVolumeSource#targetPortal + */ + readonly targetPortal: string; + +} + +/** + * PersistentVolumeClaimVolumeSource references the user's PVC in the same namespace. This volume finds the bound PV and mounts that volume for the pod. A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system). + * + * @schema io.k8s.api.core.v1.PersistentVolumeClaimVolumeSource + */ +export interface PersistentVolumeClaimVolumeSource { + /** + * ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims + * + * @schema io.k8s.api.core.v1.PersistentVolumeClaimVolumeSource#claimName + */ + readonly claimName: string; + + /** + * Will force the ReadOnly setting in VolumeMounts. Default false. + * + * @schema io.k8s.api.core.v1.PersistentVolumeClaimVolumeSource#readOnly + */ + readonly readOnly?: boolean; + +} + +/** + * Represents a projected volume source + * + * @schema io.k8s.api.core.v1.ProjectedVolumeSource + */ +export interface ProjectedVolumeSource { + /** + * Mode bits to use on created files by default. Must be a value between 0 and 0777. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. + * + * @schema io.k8s.api.core.v1.ProjectedVolumeSource#defaultMode + */ + readonly defaultMode?: number; + + /** + * list of volume projections + * + * @schema io.k8s.api.core.v1.ProjectedVolumeSource#sources + */ + readonly sources: VolumeProjection[]; + +} + +/** + * Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling. + * + * @schema io.k8s.api.core.v1.RBDVolumeSource + */ +export interface RbdVolumeSource { + /** + * Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd + * + * @schema io.k8s.api.core.v1.RBDVolumeSource#fsType + */ + readonly fsType?: string; + + /** + * The rados image name. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it + * + * @schema io.k8s.api.core.v1.RBDVolumeSource#image + */ + readonly image: string; + + /** + * Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it + * + * @default etc/ceph/keyring. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it + * @schema io.k8s.api.core.v1.RBDVolumeSource#keyring + */ + readonly keyring?: string; + + /** + * A collection of Ceph monitors. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it + * + * @schema io.k8s.api.core.v1.RBDVolumeSource#monitors + */ + readonly monitors: string[]; + + /** + * The rados pool name. Default is rbd. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it + * + * @default rbd. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it + * @schema io.k8s.api.core.v1.RBDVolumeSource#pool + */ + readonly pool?: string; + + /** + * ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it + * + * @default false. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it + * @schema io.k8s.api.core.v1.RBDVolumeSource#readOnly + */ + readonly readOnly?: boolean; + + /** + * SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it + * + * @default nil. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it + * @schema io.k8s.api.core.v1.RBDVolumeSource#secretRef + */ + readonly secretRef?: LocalObjectReference; + + /** + * The rados user name. Default is admin. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it + * + * @default admin. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it + * @schema io.k8s.api.core.v1.RBDVolumeSource#user + */ + readonly user?: string; + +} + +/** + * ScaleIOVolumeSource represents a persistent ScaleIO volume + * + * @schema io.k8s.api.core.v1.ScaleIOVolumeSource + */ +export interface ScaleIoVolumeSource { + /** + * Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Default is "xfs". + * + * @default xfs". + * @schema io.k8s.api.core.v1.ScaleIOVolumeSource#fsType + */ + readonly fsType?: string; + + /** + * The host address of the ScaleIO API Gateway. + * + * @schema io.k8s.api.core.v1.ScaleIOVolumeSource#gateway + */ + readonly gateway: string; + + /** + * The name of the ScaleIO Protection Domain for the configured storage. + * + * @schema io.k8s.api.core.v1.ScaleIOVolumeSource#protectionDomain + */ + readonly protectionDomain?: string; + + /** + * Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. + * + * @default false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. + * @schema io.k8s.api.core.v1.ScaleIOVolumeSource#readOnly + */ + readonly readOnly?: boolean; + + /** + * SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail. + * + * @schema io.k8s.api.core.v1.ScaleIOVolumeSource#secretRef + */ + readonly secretRef: LocalObjectReference; + + /** + * Flag to enable/disable SSL communication with Gateway, default false + * + * @schema io.k8s.api.core.v1.ScaleIOVolumeSource#sslEnabled + */ + readonly sslEnabled?: boolean; + + /** + * Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned. + * + * @default ThinProvisioned. + * @schema io.k8s.api.core.v1.ScaleIOVolumeSource#storageMode + */ + readonly storageMode?: string; + + /** + * The ScaleIO Storage Pool associated with the protection domain. + * + * @schema io.k8s.api.core.v1.ScaleIOVolumeSource#storagePool + */ + readonly storagePool?: string; + + /** + * The name of the storage system as configured in ScaleIO. + * + * @schema io.k8s.api.core.v1.ScaleIOVolumeSource#system + */ + readonly system: string; + + /** + * The name of a volume already created in the ScaleIO system that is associated with this volume source. + * + * @schema io.k8s.api.core.v1.ScaleIOVolumeSource#volumeName + */ + readonly volumeName?: string; + +} + +/** + * Adapts a Secret into a volume. + +The contents of the target Secret's Data field will be presented in a volume as files using the keys in the Data field as the file names. Secret volumes support ownership management and SELinux relabeling. + * + * @schema io.k8s.api.core.v1.SecretVolumeSource + */ +export interface SecretVolumeSource { + /** + * Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. + * + * @default 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. + * @schema io.k8s.api.core.v1.SecretVolumeSource#defaultMode + */ + readonly defaultMode?: number; + + /** + * If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. + * + * @schema io.k8s.api.core.v1.SecretVolumeSource#items + */ + readonly items?: KeyToPath[]; + + /** + * Specify whether the Secret or its keys must be defined + * + * @schema io.k8s.api.core.v1.SecretVolumeSource#optional + */ + readonly optional?: boolean; + + /** + * Name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret + * + * @schema io.k8s.api.core.v1.SecretVolumeSource#secretName + */ + readonly secretName?: string; + +} + +/** + * Represents a StorageOS persistent volume resource. + * + * @schema io.k8s.api.core.v1.StorageOSVolumeSource + */ +export interface StorageOsVolumeSource { + /** + * Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + * + * @schema io.k8s.api.core.v1.StorageOSVolumeSource#fsType + */ + readonly fsType?: string; + + /** + * Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. + * + * @default false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. + * @schema io.k8s.api.core.v1.StorageOSVolumeSource#readOnly + */ + readonly readOnly?: boolean; + + /** + * SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted. + * + * @schema io.k8s.api.core.v1.StorageOSVolumeSource#secretRef + */ + readonly secretRef?: LocalObjectReference; + + /** + * VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace. + * + * @schema io.k8s.api.core.v1.StorageOSVolumeSource#volumeName + */ + readonly volumeName?: string; + + /** + * VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to "default" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created. + * + * @schema io.k8s.api.core.v1.StorageOSVolumeSource#volumeNamespace + */ + readonly volumeNamespace?: string; + +} + +/** + * A scoped-resource selector requirement is a selector that contains values, a scope name, and an operator that relates the scope name and values. + * + * @schema io.k8s.api.core.v1.ScopedResourceSelectorRequirement + */ +export interface ScopedResourceSelectorRequirement { + /** + * Represents a scope's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. + * + * @schema io.k8s.api.core.v1.ScopedResourceSelectorRequirement#operator + */ + readonly operator: string; + + /** + * The name of the scope that the selector applies to. + * + * @schema io.k8s.api.core.v1.ScopedResourceSelectorRequirement#scopeName + */ + readonly scopeName: string; + + /** + * An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + * + * @schema io.k8s.api.core.v1.ScopedResourceSelectorRequirement#values + */ + readonly values?: string[]; + +} + +/** + * ClientIPConfig represents the configurations of Client IP based session affinity. + * + * @schema io.k8s.api.core.v1.ClientIPConfig + */ +export interface ClientIpConfig { + /** + * timeoutSeconds specifies the seconds of ClientIP type session sticky time. The value must be >0 && <=86400(for 1 day) if ServiceAffinity == "ClientIP". Default value is 10800(for 3 hours). + * + * @schema io.k8s.api.core.v1.ClientIPConfig#timeoutSeconds + */ + readonly timeoutSeconds?: number; + +} + +/** + * HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http:///? -> backend where where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last '/' and before the first '?' or '#'. + * + * @schema io.k8s.api.networking.v1beta1.HTTPIngressRuleValue + */ +export interface HttpIngressRuleValue { + /** + * A collection of paths that map requests to backends. + * + * @schema io.k8s.api.networking.v1beta1.HTTPIngressRuleValue#paths + */ + readonly paths: HttpIngressPath[]; + +} + +/** + * NetworkPolicyPort describes a port to allow traffic on + * + * @schema io.k8s.api.networking.v1.NetworkPolicyPort + */ +export interface NetworkPolicyPort { + /** + * The port on the given protocol. This can either be a numerical or named port on a pod. If this field is not provided, this matches all port names and numbers. + * + * @schema io.k8s.api.networking.v1.NetworkPolicyPort#port + */ + readonly port?: IntOrString; + + /** + * The protocol (TCP, UDP, or SCTP) which traffic must match. If not specified, this field defaults to TCP. + * + * @schema io.k8s.api.networking.v1.NetworkPolicyPort#protocol + */ + readonly protocol?: string; + +} + +/** + * NetworkPolicyPeer describes a peer to allow traffic from. Only certain combinations of fields are allowed + * + * @schema io.k8s.api.networking.v1.NetworkPolicyPeer + */ +export interface NetworkPolicyPeer { + /** + * IPBlock defines policy on a particular IPBlock. If this field is set then neither of the other fields can be. + * + * @schema io.k8s.api.networking.v1.NetworkPolicyPeer#ipBlock + */ + readonly ipBlock?: IpBlock; + + /** + * Selects Namespaces using cluster-scoped labels. This field follows standard label selector semantics; if present but empty, it selects all namespaces. + +If PodSelector is also set, then the NetworkPolicyPeer as a whole selects the Pods matching PodSelector in the Namespaces selected by NamespaceSelector. Otherwise it selects all Pods in the Namespaces selected by NamespaceSelector. + * + * @schema io.k8s.api.networking.v1.NetworkPolicyPeer#namespaceSelector + */ + readonly namespaceSelector?: LabelSelector; + + /** + * This is a label selector which selects Pods. This field follows standard label selector semantics; if present but empty, it selects all pods. + +If NamespaceSelector is also set, then the NetworkPolicyPeer as a whole selects the Pods matching PodSelector in the Namespaces selected by NamespaceSelector. Otherwise it selects the Pods matching PodSelector in the policy's own Namespace. + * + * @schema io.k8s.api.networking.v1.NetworkPolicyPeer#podSelector + */ + readonly podSelector?: LabelSelector; + +} + +/** + * IDRange provides a min/max of an allowed range of IDs. + * + * @schema io.k8s.api.policy.v1beta1.IDRange + */ +export interface IdRange { + /** + * max is the end of the range, inclusive. + * + * @schema io.k8s.api.policy.v1beta1.IDRange#max + */ + readonly max: number; + + /** + * min is the start of the range, inclusive. + * + * @schema io.k8s.api.policy.v1beta1.IDRange#min + */ + readonly min: number; + +} + +/** + * EnvVarSource represents a source for the value of an EnvVar. + * + * @schema io.k8s.api.core.v1.EnvVarSource + */ +export interface EnvVarSource { + /** + * Selects a key of a ConfigMap. + * + * @schema io.k8s.api.core.v1.EnvVarSource#configMapKeyRef + */ + readonly configMapKeyRef?: ConfigMapKeySelector; + + /** + * Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP. + * + * @schema io.k8s.api.core.v1.EnvVarSource#fieldRef + */ + readonly fieldRef?: ObjectFieldSelector; + + /** + * Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported. + * + * @schema io.k8s.api.core.v1.EnvVarSource#resourceFieldRef + */ + readonly resourceFieldRef?: ResourceFieldSelector; + + /** + * Selects a key of a secret in the pod's namespace + * + * @schema io.k8s.api.core.v1.EnvVarSource#secretKeyRef + */ + readonly secretKeyRef?: SecretKeySelector; + +} + +/** + * ConfigMapEnvSource selects a ConfigMap to populate the environment variables with. + +The contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables. + * + * @schema io.k8s.api.core.v1.ConfigMapEnvSource + */ +export interface ConfigMapEnvSource { + /** + * Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + * + * @schema io.k8s.api.core.v1.ConfigMapEnvSource#name + */ + readonly name?: string; + + /** + * Specify whether the ConfigMap must be defined + * + * @schema io.k8s.api.core.v1.ConfigMapEnvSource#optional + */ + readonly optional?: boolean; + +} + +/** + * SecretEnvSource selects a Secret to populate the environment variables with. + +The contents of the target Secret's Data field will represent the key-value pairs as environment variables. + * + * @schema io.k8s.api.core.v1.SecretEnvSource + */ +export interface SecretEnvSource { + /** + * Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + * + * @schema io.k8s.api.core.v1.SecretEnvSource#name + */ + readonly name?: string; + + /** + * Specify whether the Secret must be defined + * + * @schema io.k8s.api.core.v1.SecretEnvSource#optional + */ + readonly optional?: boolean; + +} + +/** + * CustomResourceSubresourceScale defines how to serve the scale subresource for CustomResources. + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresourceScale + */ +export interface CustomResourceSubresourceScale { + /** + * LabelSelectorPath defines the JSON path inside of a CustomResource that corresponds to Scale.Status.Selector. Only JSON paths without the array notation are allowed. Must be a JSON Path under .status or .spec. Must be set to work with HPA. The field pointed by this JSON path must be a string field (not a complex selector struct) which contains a serialized label selector in string form. More info: https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions#scale-subresource If there is no value under the given path in the CustomResource, the status label selector value in the /scale subresource will default to the empty string. + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresourceScale#labelSelectorPath + */ + readonly labelSelectorPath?: string; + + /** + * SpecReplicasPath defines the JSON path inside of a CustomResource that corresponds to Scale.Spec.Replicas. Only JSON paths without the array notation are allowed. Must be a JSON Path under .spec. If there is no value under the given path in the CustomResource, the /scale subresource will return an error on GET. + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresourceScale#specReplicasPath + */ + readonly specReplicasPath: string; + + /** + * StatusReplicasPath defines the JSON path inside of a CustomResource that corresponds to Scale.Status.Replicas. Only JSON paths without the array notation are allowed. Must be a JSON Path under .status. If there is no value under the given path in the CustomResource, the status replica value in the /scale subresource will default to 0. + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresourceScale#statusReplicasPath + */ + readonly statusReplicasPath: string; + +} + +/** + * JSONSchemaProps is a JSON-Schema following Specification Draft 4 (http://json-schema.org/). + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps + */ +export interface JsonSchemaProps { + /** + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps#$ref + */ + readonly ref?: string; + + /** + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps#$schema + */ + readonly schema?: string; + + /** + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps#additionalItems + */ + readonly additionalItems?: any; + + /** + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps#additionalProperties + */ + readonly additionalProperties?: any; + + /** + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps#allOf + */ + readonly allOf?: JsonSchemaProps[]; + + /** + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps#anyOf + */ + readonly anyOf?: JsonSchemaProps[]; + + /** + * default is a default value for undefined object fields. Defaulting is an alpha feature under the CustomResourceDefaulting feature gate. Defaulting requires spec.preserveUnknownFields to be false. + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps#default + */ + readonly default?: any; + + /** + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps#definitions + */ + readonly definitions?: { [key: string]: JsonSchemaProps }; + + /** + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps#dependencies + */ + readonly dependencies?: { [key: string]: any }; + + /** + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps#description + */ + readonly description?: string; + + /** + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps#enum + */ + readonly enum?: any[]; + + /** + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps#example + */ + readonly example?: any; + + /** + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps#exclusiveMaximum + */ + readonly exclusiveMaximum?: boolean; + + /** + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps#exclusiveMinimum + */ + readonly exclusiveMinimum?: boolean; + + /** + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps#externalDocs + */ + readonly externalDocs?: ExternalDocumentation; + + /** + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps#format + */ + readonly format?: string; + + /** + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps#id + */ + readonly id?: string; + + /** + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps#items + */ + readonly items?: any; + + /** + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps#maxItems + */ + readonly maxItems?: number; + + /** + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps#maxLength + */ + readonly maxLength?: number; + + /** + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps#maxProperties + */ + readonly maxProperties?: number; + + /** + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps#maximum + */ + readonly maximum?: number; + + /** + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps#minItems + */ + readonly minItems?: number; + + /** + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps#minLength + */ + readonly minLength?: number; + + /** + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps#minProperties + */ + readonly minProperties?: number; + + /** + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps#minimum + */ + readonly minimum?: number; + + /** + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps#multipleOf + */ + readonly multipleOf?: number; + + /** + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps#not + */ + readonly not?: JsonSchemaProps; + + /** + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps#nullable + */ + readonly nullable?: boolean; + + /** + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps#oneOf + */ + readonly oneOf?: JsonSchemaProps[]; + + /** + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps#pattern + */ + readonly pattern?: string; + + /** + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps#patternProperties + */ + readonly patternProperties?: { [key: string]: JsonSchemaProps }; + + /** + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps#properties + */ + readonly properties?: { [key: string]: JsonSchemaProps }; + + /** + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps#required + */ + readonly required?: string[]; + + /** + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps#title + */ + readonly title?: string; + + /** + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps#type + */ + readonly type?: string; + + /** + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps#uniqueItems + */ + readonly uniqueItems?: boolean; + +} + +/** + * MetricIdentifier defines the name and optionally selector for a metric + * + * @schema io.k8s.api.autoscaling.v2beta2.MetricIdentifier + */ +export interface MetricIdentifier { + /** + * name is the name of the given metric + * + * @schema io.k8s.api.autoscaling.v2beta2.MetricIdentifier#name + */ + readonly name: string; + + /** + * selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping. When unset, just the metricName will be used to gather metrics. + * + * @schema io.k8s.api.autoscaling.v2beta2.MetricIdentifier#selector + */ + readonly selector?: LabelSelector; + +} + +/** + * MetricTarget defines the target value, average value, or average utilization of a specific metric + * + * @schema io.k8s.api.autoscaling.v2beta2.MetricTarget + */ +export interface MetricTarget { + /** + * averageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods. Currently only valid for Resource metric source type + * + * @schema io.k8s.api.autoscaling.v2beta2.MetricTarget#averageUtilization + */ + readonly averageUtilization?: number; + + /** + * averageValue is the target value of the average of the metric across all relevant pods (as a quantity) + * + * @schema io.k8s.api.autoscaling.v2beta2.MetricTarget#averageValue + */ + readonly averageValue?: Quantity; + + /** + * type represents whether the metric type is Utilization, Value, or AverageValue + * + * @schema io.k8s.api.autoscaling.v2beta2.MetricTarget#type + */ + readonly type: string; + + /** + * value is the target value of the metric (as a quantity). + * + * @schema io.k8s.api.autoscaling.v2beta2.MetricTarget#value + */ + readonly value?: Quantity; + +} + +/** + * A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm. + * + * @schema io.k8s.api.core.v1.NodeSelectorTerm + */ +export interface NodeSelectorTerm { + /** + * A list of node selector requirements by node's labels. + * + * @schema io.k8s.api.core.v1.NodeSelectorTerm#matchExpressions + */ + readonly matchExpressions?: NodeSelectorRequirement[]; + + /** + * A list of node selector requirements by node's fields. + * + * @schema io.k8s.api.core.v1.NodeSelectorTerm#matchFields + */ + readonly matchFields?: NodeSelectorRequirement[]; + +} + +/** + * An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op). + * + * @schema io.k8s.api.core.v1.PreferredSchedulingTerm + */ +export interface PreferredSchedulingTerm { + /** + * A node selector term, associated with the corresponding weight. + * + * @schema io.k8s.api.core.v1.PreferredSchedulingTerm#preference + */ + readonly preference: NodeSelectorTerm; + + /** + * Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100. + * + * @schema io.k8s.api.core.v1.PreferredSchedulingTerm#weight + */ + readonly weight: number; + +} + +/** + * The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s) + * + * @schema io.k8s.api.core.v1.WeightedPodAffinityTerm + */ +export interface WeightedPodAffinityTerm { + /** + * Required. A pod affinity term, associated with the corresponding weight. + * + * @schema io.k8s.api.core.v1.WeightedPodAffinityTerm#podAffinityTerm + */ + readonly podAffinityTerm: PodAffinityTerm; + + /** + * weight associated with matching the corresponding podAffinityTerm, in the range 1-100. + * + * @schema io.k8s.api.core.v1.WeightedPodAffinityTerm#weight + */ + readonly weight: number; + +} + +/** + * Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running + * + * @schema io.k8s.api.core.v1.PodAffinityTerm + */ +export interface PodAffinityTerm { + /** + * A label query over a set of resources, in this case pods. + * + * @schema io.k8s.api.core.v1.PodAffinityTerm#labelSelector + */ + readonly labelSelector?: LabelSelector; + + /** + * namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means "this pod's namespace" + * + * @schema io.k8s.api.core.v1.PodAffinityTerm#namespaces + */ + readonly namespaces?: string[]; + + /** + * This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + * + * @schema io.k8s.api.core.v1.PodAffinityTerm#topologyKey + */ + readonly topologyKey: string; + +} + +/** + * Handler defines a specific action that should be taken + * + * @schema io.k8s.api.core.v1.Handler + */ +export interface Handler { + /** + * One and only one of the following should be specified. Exec specifies the action to take. + * + * @schema io.k8s.api.core.v1.Handler#exec + */ + readonly exec?: ExecAction; + + /** + * HTTPGet specifies the http request to perform. + * + * @schema io.k8s.api.core.v1.Handler#httpGet + */ + readonly httpGet?: HttpGetAction; + + /** + * TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported + * + * @schema io.k8s.api.core.v1.Handler#tcpSocket + */ + readonly tcpSocket?: TcpSocketAction; + +} + +/** + * ExecAction describes a "run in container" action. + * + * @schema io.k8s.api.core.v1.ExecAction + */ +export interface ExecAction { + /** + * Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + * + * @schema io.k8s.api.core.v1.ExecAction#command + */ + readonly command?: string[]; + +} + +/** + * HTTPGetAction describes an action based on HTTP Get requests. + * + * @schema io.k8s.api.core.v1.HTTPGetAction + */ +export interface HttpGetAction { + /** + * Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. + * + * @schema io.k8s.api.core.v1.HTTPGetAction#host + */ + readonly host?: string; + + /** + * Custom headers to set in the request. HTTP allows repeated headers. + * + * @schema io.k8s.api.core.v1.HTTPGetAction#httpHeaders + */ + readonly httpHeaders?: HttpHeader[]; + + /** + * Path to access on the HTTP server. + * + * @schema io.k8s.api.core.v1.HTTPGetAction#path + */ + readonly path?: string; + + /** + * Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + * + * @schema io.k8s.api.core.v1.HTTPGetAction#port + */ + readonly port: IntOrString; + + /** + * Scheme to use for connecting to the host. Defaults to HTTP. + * + * @default HTTP. + * @schema io.k8s.api.core.v1.HTTPGetAction#scheme + */ + readonly scheme?: string; + +} + +/** + * TCPSocketAction describes an action based on opening a socket + * + * @schema io.k8s.api.core.v1.TCPSocketAction + */ +export interface TcpSocketAction { + /** + * Optional: Host name to connect to, defaults to the pod IP. + * + * @schema io.k8s.api.core.v1.TCPSocketAction#host + */ + readonly host?: string; + + /** + * Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + * + * @schema io.k8s.api.core.v1.TCPSocketAction#port + */ + readonly port: IntOrString; + +} + +/** + * Adds and removes POSIX capabilities from running containers. + * + * @schema io.k8s.api.core.v1.Capabilities + */ +export interface Capabilities { + /** + * Added capabilities + * + * @schema io.k8s.api.core.v1.Capabilities#add + */ + readonly add?: string[]; + + /** + * Removed capabilities + * + * @schema io.k8s.api.core.v1.Capabilities#drop + */ + readonly drop?: string[]; + +} + +/** + * Maps a string key to a path within a volume. + * + * @schema io.k8s.api.core.v1.KeyToPath + */ +export interface KeyToPath { + /** + * The key to project. + * + * @schema io.k8s.api.core.v1.KeyToPath#key + */ + readonly key: string; + + /** + * Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. + * + * @schema io.k8s.api.core.v1.KeyToPath#mode + */ + readonly mode?: number; + + /** + * The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. + * + * @schema io.k8s.api.core.v1.KeyToPath#path + */ + readonly path: string; + +} + +/** + * DownwardAPIVolumeFile represents information to create the file containing the pod field + * + * @schema io.k8s.api.core.v1.DownwardAPIVolumeFile + */ +export interface DownwardApiVolumeFile { + /** + * Required: Selects a field of the pod: only annotations, labels, name and namespace are supported. + * + * @schema io.k8s.api.core.v1.DownwardAPIVolumeFile#fieldRef + */ + readonly fieldRef?: ObjectFieldSelector; + + /** + * Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. + * + * @schema io.k8s.api.core.v1.DownwardAPIVolumeFile#mode + */ + readonly mode?: number; + + /** + * Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..' + * + * @schema io.k8s.api.core.v1.DownwardAPIVolumeFile#path + */ + readonly path: string; + + /** + * Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported. + * + * @schema io.k8s.api.core.v1.DownwardAPIVolumeFile#resourceFieldRef + */ + readonly resourceFieldRef?: ResourceFieldSelector; + +} + +/** + * Projection that may be projected along with other supported volume types + * + * @schema io.k8s.api.core.v1.VolumeProjection + */ +export interface VolumeProjection { + /** + * information about the configMap data to project + * + * @schema io.k8s.api.core.v1.VolumeProjection#configMap + */ + readonly configMap?: ConfigMapProjection; + + /** + * information about the downwardAPI data to project + * + * @schema io.k8s.api.core.v1.VolumeProjection#downwardAPI + */ + readonly downwardAPI?: DownwardApiProjection; + + /** + * information about the secret data to project + * + * @schema io.k8s.api.core.v1.VolumeProjection#secret + */ + readonly secret?: SecretProjection; + + /** + * information about the serviceAccountToken data to project + * + * @schema io.k8s.api.core.v1.VolumeProjection#serviceAccountToken + */ + readonly serviceAccountToken?: ServiceAccountTokenProjection; + +} + +/** + * HTTPIngressPath associates a path regex with a backend. Incoming urls matching the path are forwarded to the backend. + * + * @schema io.k8s.api.networking.v1beta1.HTTPIngressPath + */ +export interface HttpIngressPath { + /** + * Backend defines the referenced service endpoint to which the traffic will be forwarded to. + * + * @schema io.k8s.api.networking.v1beta1.HTTPIngressPath#backend + */ + readonly backend: IngressBackend; + + /** + * Path is an extended POSIX regex as defined by IEEE Std 1003.1, (i.e this follows the egrep/unix syntax, not the perl syntax) matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional "path" part of a URL as defined by RFC 3986. Paths must begin with a '/'. If unspecified, the path defaults to a catch all sending traffic to the backend. + * + * @schema io.k8s.api.networking.v1beta1.HTTPIngressPath#path + */ + readonly path?: string; + +} + +/** + * IPBlock describes a particular CIDR (Ex. "192.168.1.1/24") that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The except entry describes CIDRs that should not be included within this rule. + * + * @schema io.k8s.api.networking.v1.IPBlock + */ +export interface IpBlock { + /** + * CIDR is a string representing the IP Block Valid examples are "192.168.1.1/24" + * + * @schema io.k8s.api.networking.v1.IPBlock#cidr + */ + readonly cidr: string; + + /** + * Except is a slice of CIDRs that should not be included within an IP Block Valid examples are "192.168.1.1/24" Except values will be rejected if they are outside the CIDR range + * + * @schema io.k8s.api.networking.v1.IPBlock#except + */ + readonly except?: string[]; + +} + +/** + * Selects a key from a ConfigMap. + * + * @schema io.k8s.api.core.v1.ConfigMapKeySelector + */ +export interface ConfigMapKeySelector { + /** + * The key to select. + * + * @schema io.k8s.api.core.v1.ConfigMapKeySelector#key + */ + readonly key: string; + + /** + * Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + * + * @schema io.k8s.api.core.v1.ConfigMapKeySelector#name + */ + readonly name?: string; + + /** + * Specify whether the ConfigMap or its key must be defined + * + * @schema io.k8s.api.core.v1.ConfigMapKeySelector#optional + */ + readonly optional?: boolean; + +} + +/** + * ObjectFieldSelector selects an APIVersioned field of an object. + * + * @schema io.k8s.api.core.v1.ObjectFieldSelector + */ +export interface ObjectFieldSelector { + /** + * Version of the schema the FieldPath is written in terms of, defaults to "v1". + * + * @schema io.k8s.api.core.v1.ObjectFieldSelector#apiVersion + */ + readonly apiVersion?: string; + + /** + * Path of the field to select in the specified API version. + * + * @schema io.k8s.api.core.v1.ObjectFieldSelector#fieldPath + */ + readonly fieldPath: string; + +} + +/** + * ResourceFieldSelector represents container resources (cpu, memory) and their output format + * + * @schema io.k8s.api.core.v1.ResourceFieldSelector + */ +export interface ResourceFieldSelector { + /** + * Container name: required for volumes, optional for env vars + * + * @schema io.k8s.api.core.v1.ResourceFieldSelector#containerName + */ + readonly containerName?: string; + + /** + * Specifies the output format of the exposed resources, defaults to "1" + * + * @schema io.k8s.api.core.v1.ResourceFieldSelector#divisor + */ + readonly divisor?: Quantity; + + /** + * Required: resource to select + * + * @schema io.k8s.api.core.v1.ResourceFieldSelector#resource + */ + readonly resource: string; + +} + +/** + * SecretKeySelector selects a key of a Secret. + * + * @schema io.k8s.api.core.v1.SecretKeySelector + */ +export interface SecretKeySelector { + /** + * The key of the secret to select from. Must be a valid secret key. + * + * @schema io.k8s.api.core.v1.SecretKeySelector#key + */ + readonly key: string; + + /** + * Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + * + * @schema io.k8s.api.core.v1.SecretKeySelector#name + */ + readonly name?: string; + + /** + * Specify whether the Secret or its key must be defined + * + * @schema io.k8s.api.core.v1.SecretKeySelector#optional + */ + readonly optional?: boolean; + +} + +/** + * ExternalDocumentation allows referencing an external resource for extended documentation. + * + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.ExternalDocumentation + */ +export interface ExternalDocumentation { + /** + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.ExternalDocumentation#description + */ + readonly description?: string; + + /** + * @schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.ExternalDocumentation#url + */ + readonly url?: string; + +} + +/** + * A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + * + * @schema io.k8s.api.core.v1.NodeSelectorRequirement + */ +export interface NodeSelectorRequirement { + /** + * The label key that the selector applies to. + * + * @schema io.k8s.api.core.v1.NodeSelectorRequirement#key + */ + readonly key: string; + + /** + * Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + * + * @schema io.k8s.api.core.v1.NodeSelectorRequirement#operator + */ + readonly operator: string; + + /** + * An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + * + * @schema io.k8s.api.core.v1.NodeSelectorRequirement#values + */ + readonly values?: string[]; + +} + +/** + * HTTPHeader describes a custom header to be used in HTTP probes + * + * @schema io.k8s.api.core.v1.HTTPHeader + */ +export interface HttpHeader { + /** + * The header field name + * + * @schema io.k8s.api.core.v1.HTTPHeader#name + */ + readonly name: string; + + /** + * The header field value + * + * @schema io.k8s.api.core.v1.HTTPHeader#value + */ + readonly value: string; + +} + +/** + * Adapts a ConfigMap into a projected volume. + +The contents of the target ConfigMap's Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode. + * + * @schema io.k8s.api.core.v1.ConfigMapProjection + */ +export interface ConfigMapProjection { + /** + * If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. + * + * @schema io.k8s.api.core.v1.ConfigMapProjection#items + */ + readonly items?: KeyToPath[]; + + /** + * Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + * + * @schema io.k8s.api.core.v1.ConfigMapProjection#name + */ + readonly name?: string; + + /** + * Specify whether the ConfigMap or its keys must be defined + * + * @schema io.k8s.api.core.v1.ConfigMapProjection#optional + */ + readonly optional?: boolean; + +} + +/** + * Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode. + * + * @schema io.k8s.api.core.v1.DownwardAPIProjection + */ +export interface DownwardApiProjection { + /** + * Items is a list of DownwardAPIVolume file + * + * @schema io.k8s.api.core.v1.DownwardAPIProjection#items + */ + readonly items?: DownwardApiVolumeFile[]; + +} + +/** + * Adapts a secret into a projected volume. + +The contents of the target Secret's Data field will be presented in a projected volume as files using the keys in the Data field as the file names. Note that this is identical to a secret volume source without the default mode. + * + * @schema io.k8s.api.core.v1.SecretProjection + */ +export interface SecretProjection { + /** + * If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. + * + * @schema io.k8s.api.core.v1.SecretProjection#items + */ + readonly items?: KeyToPath[]; + + /** + * Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + * + * @schema io.k8s.api.core.v1.SecretProjection#name + */ + readonly name?: string; + + /** + * Specify whether the Secret or its key must be defined + * + * @schema io.k8s.api.core.v1.SecretProjection#optional + */ + readonly optional?: boolean; + +} + +/** + * ServiceAccountTokenProjection represents a projected service account token volume. This projection can be used to insert a service account token into the pods runtime filesystem for use against APIs (Kubernetes API Server or otherwise). + * + * @schema io.k8s.api.core.v1.ServiceAccountTokenProjection + */ +export interface ServiceAccountTokenProjection { + /** + * Audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver. + * + * @schema io.k8s.api.core.v1.ServiceAccountTokenProjection#audience + */ + readonly audience?: string; + + /** + * ExpirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes. + * + * @default 1 hour and must be at least 10 minutes. + * @schema io.k8s.api.core.v1.ServiceAccountTokenProjection#expirationSeconds + */ + readonly expirationSeconds?: number; + + /** + * Path is the path relative to the mount point of the file to project the token into. + * + * @schema io.k8s.api.core.v1.ServiceAccountTokenProjection#path + */ + readonly path: string; + +} + diff --git a/synths/main.d.ts b/synths/main.d.ts deleted file mode 100644 index 11534e7..0000000 --- a/synths/main.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -import { Construct } from 'constructs'; -import { Chart, ChartProps } from 'cdk8s'; -export declare class MyChart extends Chart { - constructor(scope: Construct, id: string, props?: ChartProps); -} diff --git a/synths/main.js b/synths/main.js deleted file mode 100644 index 7bad47d..0000000 --- a/synths/main.js +++ /dev/null @@ -1,15 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.MyChart = void 0; -const cdk8s_1 = require("cdk8s"); -class MyChart extends cdk8s_1.Chart { - constructor(scope, id, props = {}) { - super(scope, id, props); - // define resources here - } -} -exports.MyChart = MyChart; -const app = new cdk8s_1.App(); -new MyChart(app, 'synths'); -app.synth(); -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWFpbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIm1haW4udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBQ0EsaUNBQStDO0FBRS9DLE1BQWEsT0FBUSxTQUFRLGFBQUs7SUFDaEMsWUFBWSxLQUFnQixFQUFFLEVBQVUsRUFBRSxRQUFvQixFQUFHO1FBQy9ELEtBQUssQ0FBQyxLQUFLLEVBQUUsRUFBRSxFQUFFLEtBQUssQ0FBQyxDQUFDO1FBRXhCLHdCQUF3QjtJQUUxQixDQUFDO0NBQ0Y7QUFQRCwwQkFPQztBQUVELE1BQU0sR0FBRyxHQUFHLElBQUksV0FBRyxFQUFFLENBQUM7QUFDdEIsSUFBSSxPQUFPLENBQUMsR0FBRyxFQUFFLFFBQVEsQ0FBQyxDQUFDO0FBQzNCLEdBQUcsQ0FBQyxLQUFLLEVBQUUsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbnN0cnVjdCB9IGZyb20gJ2NvbnN0cnVjdHMnO1xuaW1wb3J0IHsgQXBwLCBDaGFydCwgQ2hhcnRQcm9wcyB9IGZyb20gJ2NkazhzJztcblxuZXhwb3J0IGNsYXNzIE15Q2hhcnQgZXh0ZW5kcyBDaGFydCB7XG4gIGNvbnN0cnVjdG9yKHNjb3BlOiBDb25zdHJ1Y3QsIGlkOiBzdHJpbmcsIHByb3BzOiBDaGFydFByb3BzID0geyB9KSB7XG4gICAgc3VwZXIoc2NvcGUsIGlkLCBwcm9wcyk7XG5cbiAgICAvLyBkZWZpbmUgcmVzb3VyY2VzIGhlcmVcblxuICB9XG59XG5cbmNvbnN0IGFwcCA9IG5ldyBBcHAoKTtcbm5ldyBNeUNoYXJ0KGFwcCwgJ3N5bnRocycpO1xuYXBwLnN5bnRoKCk7XG4iXX0= \ No newline at end of file diff --git a/synths/main.test.d.ts b/synths/main.test.d.ts deleted file mode 100644 index cb0ff5c..0000000 --- a/synths/main.test.d.ts +++ /dev/null @@ -1 +0,0 @@ -export {}; diff --git a/synths/main.test.js b/synths/main.test.js deleted file mode 100644 index b5f5805..0000000 --- a/synths/main.test.js +++ /dev/null @@ -1,13 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const main_1 = require("./main"); -const cdk8s_1 = require("cdk8s"); -describe('Placeholder', () => { - test('Empty', () => { - const app = cdk8s_1.Testing.app(); - const chart = new main_1.MyChart(app, 'test-chart'); - const results = cdk8s_1.Testing.synth(chart); - expect(results).toMatchSnapshot(); - }); -}); -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWFpbi50ZXN0LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsibWFpbi50ZXN0LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7O0FBQUEsaUNBQStCO0FBQy9CLGlDQUE4QjtBQUU5QixRQUFRLENBQUMsYUFBYSxFQUFFLEdBQUcsRUFBRTtJQUMzQixJQUFJLENBQUMsT0FBTyxFQUFFLEdBQUcsRUFBRTtRQUNqQixNQUFNLEdBQUcsR0FBRyxlQUFPLENBQUMsR0FBRyxFQUFFLENBQUM7UUFDMUIsTUFBTSxLQUFLLEdBQUcsSUFBSSxjQUFPLENBQUMsR0FBRyxFQUFFLFlBQVksQ0FBQyxDQUFDO1FBQzdDLE1BQU0sT0FBTyxHQUFHLGVBQU8sQ0FBQyxLQUFLLENBQUMsS0FBSyxDQUFDLENBQUE7UUFDcEMsTUFBTSxDQUFDLE9BQU8sQ0FBQyxDQUFDLGVBQWUsRUFBRSxDQUFDO0lBQ3BDLENBQUMsQ0FBQyxDQUFDO0FBQ0wsQ0FBQyxDQUFDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge015Q2hhcnR9IGZyb20gJy4vbWFpbic7XG5pbXBvcnQge1Rlc3Rpbmd9IGZyb20gJ2NkazhzJztcblxuZGVzY3JpYmUoJ1BsYWNlaG9sZGVyJywgKCkgPT4ge1xuICB0ZXN0KCdFbXB0eScsICgpID0+IHtcbiAgICBjb25zdCBhcHAgPSBUZXN0aW5nLmFwcCgpO1xuICAgIGNvbnN0IGNoYXJ0ID0gbmV3IE15Q2hhcnQoYXBwLCAndGVzdC1jaGFydCcpO1xuICAgIGNvbnN0IHJlc3VsdHMgPSBUZXN0aW5nLnN5bnRoKGNoYXJ0KVxuICAgIGV4cGVjdChyZXN1bHRzKS50b01hdGNoU25hcHNob3QoKTtcbiAgfSk7XG59KTtcbiJdfQ== \ No newline at end of file diff --git a/synths/main.test.ts b/synths/main.test.ts index 5851e33..8a5d4d2 100644 --- a/synths/main.test.ts +++ b/synths/main.test.ts @@ -1,11 +1,28 @@ import {MyChart} from './main'; import {Testing} from 'cdk8s'; +interface MyObj2 { + namespace: string; +} + +interface MyObj { + metadata: MyObj2; +} + describe('Placeholder', () => { - test('Empty', () => { + let results: any[]; + beforeEach(() => { const app = Testing.app(); - const chart = new MyChart(app, 'test-chart'); - const results = Testing.synth(chart) - expect(results).toMatchSnapshot(); + const chart = new MyChart(app, 'test-chart', {namespace: 'default'}); + results = Testing.synth(chart) + }); + test('namespace matches', () => { + const [service, deployment] = results; + // expect(service).toMatchSnapshot(); + // expect(deployment).toMatchSnapshot(); + let svc: MyObj = service; + let deploy: MyObj = deployment; + expect(svc.metadata.namespace).toEqual('default'); + expect(deploy.metadata.namespace).toEqual('default'); }); }); diff --git a/synths/main.ts b/synths/main.ts index 3817255..8b9cadb 100644 --- a/synths/main.ts +++ b/synths/main.ts @@ -1,15 +1,45 @@ import { Construct } from 'constructs'; import { App, Chart, ChartProps } from 'cdk8s'; +import { KubeDeployment, KubeService, IntOrString } from './imports/k8s'; + export class MyChart extends Chart { constructor(scope: Construct, id: string, props: ChartProps = { }) { super(scope, id, props); - // define resources here + const label = { app: 'hello-k8s' }; + + new KubeService(this, 'service', { + spec: { + type: 'LoadBalancer', + ports: [ { port: 80, targetPort: IntOrString.fromNumber(8080) } ], + selector: label + } + }); + new KubeDeployment(this, 'deployment', { + spec: { + replicas: 2, + selector: { + matchLabels: label + }, + template: { + metadata: { labels: label }, + spec: { + containers: [ + { + name: 'hello-kubernetes', + image: 'paulbouwer/hello-kubernetes:1.7', + ports: [ { containerPort: 8080 } ] + } + ] + } + } + } + }); } } const app = new App(); -new MyChart(app, 'synths'); +new MyChart(app, 'synths', {namespace: 'default'}); app.synth(); diff --git a/synths/package-lock.json b/synths/package-lock.json index 9b74606..93065ae 100644 --- a/synths/package-lock.json +++ b/synths/package-lock.json @@ -1,8 +1,7169 @@ { "name": "synths", "version": "1.0.0", - "lockfileVersion": 1, + "lockfileVersion": 2, "requires": true, + "packages": { + "": { + "version": "1.0.0", + "license": "Apache-2.0", + "dependencies": { + "cdk8s": "^1.0.0-beta.6", + "cdk8s-plus-17": "^1.0.0-beta.6", + "constructs": "^3.2.117" + }, + "devDependencies": { + "@types/jest": "^26.0.20", + "@types/node": "^14.14.22", + "cdk8s-cli": "^1.0.0-beta.6", + "jest": "^26.6.3", + "ts-jest": "^26.5.0", + "typescript": "^4.1.3" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.10.4" + } + }, + "node_modules/@babel/core": { + "version": "7.12.10", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.10.tgz", + "integrity": "sha512-eTAlQKq65zHfkHZV0sIVODCPGVgoo1HdBlbSLi9CqOzuZanMv2ihzY+4paiKr1mH+XmYESMAmJ/dpZ68eN6d8w==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.10.4", + "@babel/generator": "^7.12.10", + "@babel/helper-module-transforms": "^7.12.1", + "@babel/helpers": "^7.12.5", + "@babel/parser": "^7.12.10", + "@babel/template": "^7.12.7", + "@babel/traverse": "^7.12.10", + "@babel/types": "^7.12.10", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "semver": "^5.4.1", + "source-map": "^0.5.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/@babel/core/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@babel/generator": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.11.tgz", + "integrity": "sha512-Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.12.11", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + } + }, + "node_modules/@babel/generator/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.11.tgz", + "integrity": "sha512-AtQKjtYNolKNi6nNNVLQ27CP6D9oFR6bq/HPYSizlzbp7uC1M59XJe8L+0uXjbIaZaUJF99ruHqVGiKXU/7ybA==", + "dev": true, + "dependencies": { + "@babel/helper-get-function-arity": "^7.12.10", + "@babel/template": "^7.12.7", + "@babel/types": "^7.12.11" + } + }, + "node_modules/@babel/helper-get-function-arity": { + "version": "7.12.10", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.10.tgz", + "integrity": "sha512-mm0n5BPjR06wh9mPQaDdXWDoll/j5UpCAPl1x8fS71GHm7HA6Ua2V4ylG1Ju8lvcTOietbPNNPaSilKj+pj+Ag==", + "dev": true, + "dependencies": { + "@babel/types": "^7.12.10" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.12.7", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.7.tgz", + "integrity": "sha512-DCsuPyeWxeHgh1Dus7APn7iza42i/qXqiFPWyBDdOFtvS581JQePsc1F/nD+fHrcswhLlRc2UpYS1NwERxZhHw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.12.7" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.12.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz", + "integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.12.5" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz", + "integrity": "sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "^7.12.1", + "@babel/helper-replace-supers": "^7.12.1", + "@babel/helper-simple-access": "^7.12.1", + "@babel/helper-split-export-declaration": "^7.11.0", + "@babel/helper-validator-identifier": "^7.10.4", + "@babel/template": "^7.10.4", + "@babel/traverse": "^7.12.1", + "@babel/types": "^7.12.1", + "lodash": "^4.17.19" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.12.10", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.10.tgz", + "integrity": "sha512-4tpbU0SrSTjjt65UMWSrUOPZTsgvPgGG4S8QSTNHacKzpS51IVWGDj0yCwyeZND/i+LSN2g/O63jEXEWm49sYQ==", + "dev": true, + "dependencies": { + "@babel/types": "^7.12.10" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz", + "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==", + "dev": true + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.11.tgz", + "integrity": "sha512-q+w1cqmhL7R0FNzth/PLLp2N+scXEK/L2AHbXUyydxp828F4FEa5WcVoqui9vFRiHDQErj9Zof8azP32uGVTRA==", + "dev": true, + "dependencies": { + "@babel/helper-member-expression-to-functions": "^7.12.7", + "@babel/helper-optimise-call-expression": "^7.12.10", + "@babel/traverse": "^7.12.10", + "@babel/types": "^7.12.11" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz", + "integrity": "sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.12.1" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.11.tgz", + "integrity": "sha512-LsIVN8j48gHgwzfocYUSkO/hjYAOJqlpJEc7tGXcIm4cubjVUf8LGW6eWRyxEu7gA25q02p0rQUWoCI33HNS5g==", + "dev": true, + "dependencies": { + "@babel/types": "^7.12.11" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", + "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==", + "dev": true + }, + "node_modules/@babel/helpers": { + "version": "7.12.5", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.5.tgz", + "integrity": "sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA==", + "dev": true, + "dependencies": { + "@babel/template": "^7.10.4", + "@babel/traverse": "^7.12.5", + "@babel/types": "^7.12.5" + } + }, + "node_modules/@babel/highlight": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz", + "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.10.4", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + } + }, + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "node_modules/@babel/highlight/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": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/parser": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.11.tgz", + "integrity": "sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg==", + "dev": true, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "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==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.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" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.1.tgz", + "integrity": "sha512-U40A76x5gTwmESz+qiqssqmeEsKvcSyvtgktrm0uzcARAmM9I1jR221f6Oq+GmHrcD+LvZDag1UTOTe2fL3TeA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "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==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "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==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "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==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "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==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "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==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "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==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.1.tgz", + "integrity": "sha512-i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "node_modules/@babel/template": { + "version": "7.12.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.12.7.tgz", + "integrity": "sha512-GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.10.4", + "@babel/parser": "^7.12.7", + "@babel/types": "^7.12.7" + } + }, + "node_modules/@babel/traverse": { + "version": "7.12.12", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.12.tgz", + "integrity": "sha512-s88i0X0lPy45RrLM8b9mz8RPH5FqO9G9p7ti59cToE44xFm1Q+Pjh5Gq4SXBbtb88X7Uy7pexeqRIQDDMNkL0w==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.12.11", + "@babel/generator": "^7.12.11", + "@babel/helper-function-name": "^7.12.11", + "@babel/helper-split-export-declaration": "^7.12.11", + "@babel/parser": "^7.12.11", + "@babel/types": "^7.12.12", + "debug": "^4.1.0", + "globals": "^11.1.0", + "lodash": "^4.17.19" + } + }, + "node_modules/@babel/types": { + "version": "7.12.12", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz", + "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.12.11", + "lodash": "^4.17.19", + "to-fast-properties": "^2.0.0" + } + }, + "node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "dev": true + }, + "node_modules/@cnakazawa/watch": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz", + "integrity": "sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==", + "dev": true, + "dependencies": { + "exec-sh": "^0.3.2", + "minimist": "^1.2.0" + }, + "bin": { + "watch": "cli.js" + }, + "engines": { + "node": ">=0.1.95" + } + }, + "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": { + "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" + }, + "engines": { + "node": ">=8" + } + }, + "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" + } + }, + "node_modules/@istanbuljs/schema": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.2.tgz", + "integrity": "sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-26.6.2.tgz", + "integrity": "sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g==", + "dev": true, + "dependencies": { + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^26.6.2", + "jest-util": "^26.6.2", + "slash": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/core": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-26.6.3.tgz", + "integrity": "sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==", + "dev": true, + "dependencies": { + "@jest/console": "^26.6.2", + "@jest/reporters": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "jest-changed-files": "^26.6.2", + "jest-config": "^26.6.3", + "jest-haste-map": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-resolve": "^26.6.2", + "jest-resolve-dependencies": "^26.6.3", + "jest-runner": "^26.6.3", + "jest-runtime": "^26.6.3", + "jest-snapshot": "^26.6.2", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "jest-watcher": "^26.6.2", + "micromatch": "^4.0.2", + "p-each-series": "^2.1.0", + "rimraf": "^3.0.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/environment": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-26.6.2.tgz", + "integrity": "sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA==", + "dev": true, + "dependencies": { + "@jest/fake-timers": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "jest-mock": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/fake-timers": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-26.6.2.tgz", + "integrity": "sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA==", + "dev": true, + "dependencies": { + "@jest/types": "^26.6.2", + "@sinonjs/fake-timers": "^6.0.1", + "@types/node": "*", + "jest-message-util": "^26.6.2", + "jest-mock": "^26.6.2", + "jest-util": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/globals": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-26.6.2.tgz", + "integrity": "sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA==", + "dev": true, + "dependencies": { + "@jest/environment": "^26.6.2", + "@jest/types": "^26.6.2", + "expect": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/reporters": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-26.6.2.tgz", + "integrity": "sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw==", + "dev": true, + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.2", + "graceful-fs": "^4.2.4", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^4.0.3", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.0.2", + "jest-haste-map": "^26.6.2", + "jest-resolve": "^26.6.2", + "jest-util": "^26.6.2", + "jest-worker": "^26.6.2", + "node-notifier": "^8.0.0", + "slash": "^3.0.0", + "source-map": "^0.6.0", + "string-length": "^4.0.1", + "terminal-link": "^2.0.0", + "v8-to-istanbul": "^7.0.0" + }, + "engines": { + "node": ">= 10.14.2" + }, + "optionalDependencies": { + "node-notifier": "^8.0.0" + } + }, + "node_modules/@jest/source-map": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-26.6.2.tgz", + "integrity": "sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0", + "graceful-fs": "^4.2.4", + "source-map": "^0.6.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/test-result": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-26.6.2.tgz", + "integrity": "sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==", + "dev": true, + "dependencies": { + "@jest/console": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/test-sequencer": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-26.6.3.tgz", + "integrity": "sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==", + "dev": true, + "dependencies": { + "@jest/test-result": "^26.6.2", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^26.6.2", + "jest-runner": "^26.6.3", + "jest-runtime": "^26.6.3" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/transform": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-26.6.2.tgz", + "integrity": "sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^26.6.2", + "babel-plugin-istanbul": "^6.0.0", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-util": "^26.6.2", + "micromatch": "^4.0.2", + "pirates": "^4.0.1", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jsii/spec": { + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/@jsii/spec/-/spec-1.18.0.tgz", + "integrity": "sha512-NtIvTyKBFCpwmZpCX76WtIks+W6I0Rbo94SvDuLsMGV8KBgiIEfgLP47P57vKxaJkXLNiINMjFBOSTDwF3bWKg==", + "dev": true, + "dependencies": { + "jsonschema": "^1.4.0" + }, + "engines": { + "node": ">= 10.3.0" + } + }, + "node_modules/@sinonjs/commons": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.2.tgz", + "integrity": "sha512-sruwd86RJHdsVf/AtBoijDmUqJp3B6hF/DGC23C+JaegnDHaZyewCjoVGTdg3J0uz3Zs7NnIT05OBOmML72lQw==", + "dev": true, + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz", + "integrity": "sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==", + "dev": true, + "dependencies": { + "@sinonjs/commons": "^1.7.0" + } + }, + "node_modules/@types/babel__core": { + "version": "7.1.12", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.12.tgz", + "integrity": "sha512-wMTHiiTiBAAPebqaPiPDLFA4LYPKr6Ph0Xq/6rq1Ur3v66HXyG+clfR9CNETkD7MQS8ZHvpQOtA53DLws5WAEQ==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.2.tgz", + "integrity": "sha512-MdSJnBjl+bdwkLskZ3NGFp9YcXGx5ggLpQQPqtgakVhsWK0hTtNYhjpZLlWQTviGTvF8at+Bvli3jV7faPdgeQ==", + "dev": true, + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.0", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.0.tgz", + "integrity": "sha512-NTPErx4/FiPCGScH7foPyr+/1Dkzkni+rHiYHHoTjvwou7AQzJkNeD60A9CXRy+ZEN2B1bggmkTMCDb+Mv5k+A==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.11.0.tgz", + "integrity": "sha512-kSjgDMZONiIfSH1Nxcr5JIRMwUetDki63FSQfpTCz8ogF3Ulqm8+mr5f78dUYs6vMiB6gBusQqfQmBvHZj/lwg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.3.0" + } + }, + "node_modules/@types/graceful-fs": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.4.tgz", + "integrity": "sha512-mWA/4zFQhfvOA8zWkXobwJvBD7vzcxgrOQ0J5CH1votGqdq9m7+FwtGaqyCZqC3NyyBkc9z4m+iry4LlqcMWJg==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz", + "integrity": "sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==", + "dev": true + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz", + "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/jest": { + "version": "26.0.20", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-26.0.20.tgz", + "integrity": "sha512-9zi2Y+5USJRxd0FsahERhBwlcvFh6D2GLQnY2FH2BzK8J9s9omvNHIbvABwIluXa0fD8XVKMLTO0aOEuUfACAA==", + "dev": true, + "dependencies": { + "jest-diff": "^26.0.0", + "pretty-format": "^26.0.0" + } + }, + "node_modules/@types/node": { + "version": "14.14.22", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.22.tgz", + "integrity": "sha512-g+f/qj/cNcqKkc3tFqlXOYjrmZA+jNBiDzbP3kH+B+otKFqAdPgVTGP1IeKRdMml/aE69as5S4FqtxAbl+LaMw==", + "dev": true + }, + "node_modules/@types/normalize-package-data": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz", + "integrity": "sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==", + "dev": true + }, + "node_modules/@types/prettier": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.1.6.tgz", + "integrity": "sha512-6gOkRe7OIioWAXfnO/2lFiv+SJichKVSys1mSsgyrYHSEjk8Ctv4tSR/Odvnu+HWlH2C8j53dahU03XmQdd5fA==", + "dev": true + }, + "node_modules/@types/stack-utils": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.0.tgz", + "integrity": "sha512-RJJrrySY7A8havqpGObOB4W92QXKJo63/jFLLgpvOtsGUqbQZ9Sbgl35KMm1DjC6j7AvmmU2bIno+3IyEaemaw==", + "dev": true + }, + "node_modules/@types/yargs": { + "version": "15.0.13", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.13.tgz", + "integrity": "sha512-kQ5JNTrbDv3Rp5X2n/iUu37IJBDU2gsZ5R/g1/KHOOEc5IKfUFjXT6DENPGduh08I/pamwtEq4oul7gUqKTQDQ==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "20.2.0", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-20.2.0.tgz", + "integrity": "sha512-37RSHht+gzzgYeobbG+KWryeAW8J33Nhr69cjTqSYymXVZEN9NbRYWoYlRtDhHKPVT1FyNKwaTPC1NynKZpzRA==", + "dev": true + }, + "node_modules/abab": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz", + "integrity": "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==", + "dev": true + }, + "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, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "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, + "dependencies": { + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1" + } + }, + "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, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "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" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.1.tgz", + "integrity": "sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA==", + "dev": true, + "dependencies": { + "type-fest": "^0.11.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-escapes/node_modules/type-fest": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.11.0.tgz", + "integrity": "sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", + "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", + "dev": true, + "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==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/anymatch": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz", + "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "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/arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-filter": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-filter/-/array-filter-1.0.0.tgz", + "integrity": "sha1-uveeYubvTCpMC4MSMtr/7CUfnYM=", + "dev": true + }, + "node_modules/array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/asn1": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", + "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", + "dev": true, + "dependencies": { + "safer-buffer": "~2.1.0" + } + }, + "node_modules/assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", + "dev": true + }, + "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==", + "dev": true, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "dev": true, + "bin": { + "atob": "bin/atob.js" + }, + "engines": { + "node": ">= 4.5.0" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.2.tgz", + "integrity": "sha512-XWX3OX8Onv97LMk/ftVyBibpGwY5a8SmuxZPzeOxqmuEqUCOM9ZE+uIaD1VNJ5QnvU2UQusvmKbuM1FR8QWGfQ==", + "dev": true, + "dependencies": { + "array-filter": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/aws4": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", + "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==", + "dev": true + }, + "node_modules/babel-jest": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-26.6.3.tgz", + "integrity": "sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==", + "dev": true, + "dependencies": { + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/babel__core": "^7.1.7", + "babel-plugin-istanbul": "^6.0.0", + "babel-preset-jest": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "slash": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz", + "integrity": "sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^4.0.0", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-26.6.2.tgz", + "integrity": "sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==", + "dev": true, + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.0.0", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "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, + "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" + } + }, + "node_modules/babel-preset-jest": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-26.6.2.tgz", + "integrity": "sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==", + "dev": true, + "dependencies": { + "babel-plugin-jest-hoist": "^26.6.2", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true + }, + "node_modules/base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "dev": true, + "dependencies": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", + "dev": true, + "dependencies": { + "tweetnacl": "^0.14.3" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "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 + }, + "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": ">= 6" + } + }, + "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/buffer-from": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", + "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==", + "dev": true + }, + "node_modules/cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "dev": true, + "dependencies": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz", + "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/capture-exit": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz", + "integrity": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==", + "dev": true, + "dependencies": { + "rsvp": "^4.8.4" + }, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/case": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/case/-/case-1.6.3.tgz", + "integrity": "sha512-mzDSXIPaFwVDvZAHqZ9VlbyF4yyXRuX6IvB06WvPYkqJVO24kX1PPhv9bfpKNFZyxYFmmgo03HUiD8iklmJYRQ==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", + "dev": true + }, + "node_modules/cdk8s": { + "version": "1.0.0-beta.6", + "resolved": "https://registry.npmjs.org/cdk8s/-/cdk8s-1.0.0-beta.6.tgz", + "integrity": "sha512-L/J8c7/wSEY2POx5j9SnxxgEJ7V7mFYS3F9pGj2idUfj4GCHbMLCGXQ8bAPzaiWOFSEDVMOPBOangLEia+5RBw==", + "bundleDependencies": [ + "fast-json-patch", + "follow-redirects", + "json-stable-stringify", + "jsonify", + "yaml" + ], + "dependencies": { + "fast-json-patch": "^3.0.0-1", + "follow-redirects": "^1.13.1", + "json-stable-stringify": "^1.0.1", + "yaml": "2.0.0-1" + }, + "engines": { + "node": ">= 10.17.0" + } + }, + "node_modules/cdk8s-cli": { + "version": "1.0.0-beta.6", + "resolved": "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-1.0.0-beta.6.tgz", + "integrity": "sha512-x6sJTGaSPoyQbcKbxkKxmgdGXLpyO+qbgt6GgN9guIk28dgkoqZG9CcfmwjAs+OXoY4ZiyNKvNO4w9ljW/+XOQ==", + "dev": true, + "dependencies": { + "@types/node": "^10.17.50", + "cdk8s": "1.0.0-beta.6", + "codemaker": "^1.16.0", + "colors": "^1.4.0", + "constructs": "^3.2.34", + "fs-extra": "^8.1.0", + "jsii-pacmak": "^1.16.0", + "jsii-srcmak": "^0.1.178", + "json2jsii": "^0.1.169", + "sscaff": "^1.2.0", + "yaml": "^1.10.0", + "yargs": "^15.4.1" + }, + "bin": { + "cdk8s": "bin/cdk8s" + }, + "engines": { + "node": ">= 10.17.0" + } + }, + "node_modules/cdk8s-cli/node_modules/@types/node": { + "version": "10.17.51", + "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.51.tgz", + "integrity": "sha512-KANw+MkL626tq90l++hGelbl67irOJzGhUJk6a1Bt8QHOeh9tztJx+L0AqttraWKinmZn7Qi5lJZJzx45Gq0dg==", + "dev": true + }, + "node_modules/cdk8s-plus-17": { + "version": "1.0.0-beta.6", + "resolved": "https://registry.npmjs.org/cdk8s-plus-17/-/cdk8s-plus-17-1.0.0-beta.6.tgz", + "integrity": "sha512-dWUQQs5MZIaYTA6JPNRLkmFqCyepnbA4pDpWGV3fe50rGoi97yg0hvEYkzbGMwh4DFyD4pJTTyZHDCCGnrmdbA==", + "bundleDependencies": [ + "balanced-match", + "brace-expansion", + "concat-map", + "minimatch" + ], + "dependencies": { + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">= 10.17.0" + } + }, + "node_modules/cdk8s-plus-17/node_modules/balanced-match": { + "version": "1.0.0", + "inBundle": true, + "license": "MIT" + }, + "node_modules/cdk8s-plus-17/node_modules/brace-expansion": { + "version": "1.1.11", + "inBundle": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/cdk8s-plus-17/node_modules/concat-map": { + "version": "0.0.1", + "inBundle": true, + "license": "MIT" + }, + "node_modules/cdk8s-plus-17/node_modules/minimatch": { + "version": "3.0.4", + "inBundle": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/cdk8s/node_modules/fast-json-patch": { + "version": "3.0.0-1", + "inBundle": true, + "license": "MIT" + }, + "node_modules/cdk8s/node_modules/follow-redirects": { + "version": "1.13.1", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/cdk8s/node_modules/json-stable-stringify": { + "version": "1.0.1", + "inBundle": true, + "license": "MIT", + "dependencies": { + "jsonify": "~0.0.0" + } + }, + "node_modules/cdk8s/node_modules/jsonify": { + "version": "0.0.0", + "inBundle": true, + "license": "Public Domain" + }, + "node_modules/cdk8s/node_modules/yaml": { + "version": "2.0.0-1", + "inBundle": true, + "license": "ISC", + "engines": { + "node": ">= 6" + } + }, + "node_modules/chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "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==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", + "dev": true + }, + "node_modules/cjs-module-lexer": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-0.6.0.tgz", + "integrity": "sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw==", + "dev": true + }, + "node_modules/class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dev": true, + "dependencies": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", + "dev": true, + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/codemaker": { + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/codemaker/-/codemaker-1.18.0.tgz", + "integrity": "sha512-sUVEg7pzW5HlWvC8OZvMoon9+8LZXA+5dIAqJD8GleosY16UOlOY2MlbLldRa34PXfqCODrXlktTbH93AELgHg==", + "dev": true, + "dependencies": { + "camelcase": "^6.2.0", + "decamelize": "^5.0.0", + "fs-extra": "^9.1.0" + }, + "engines": { + "node": ">= 10.3.0" + } + }, + "node_modules/codemaker/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==", + "dev": true, + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/collect-v8-coverage": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", + "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", + "dev": true + }, + "node_modules/collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "dev": true, + "dependencies": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "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==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "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==", + "dev": true + }, + "node_modules/colors": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", + "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==", + "dev": true, + "engines": { + "node": ">=0.1.90" + } + }, + "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==", + "dev": true, + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commonmark": { + "version": "0.29.3", + "resolved": "https://registry.npmjs.org/commonmark/-/commonmark-0.29.3.tgz", + "integrity": "sha512-fvt/NdOFKaL2gyhltSy6BC4LxbbxbnPxBMl923ittqO/JBM0wQHaoYZliE4tp26cRxX/ZZtRsJlZzQrVdUkXAA==", + "dev": true, + "dependencies": { + "entities": "~2.0", + "mdurl": "~1.0.1", + "minimist": ">=1.2.2", + "string.prototype.repeat": "^0.2.0" + }, + "bin": { + "commonmark": "bin/commonmark" + }, + "engines": { + "node": "*" + } + }, + "node_modules/component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", + "dev": true + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + }, + "node_modules/constructs": { + "version": "3.2.117", + "resolved": "https://registry.npmjs.org/constructs/-/constructs-3.2.117.tgz", + "integrity": "sha512-zYDlALAHWdopUzMGr3aZPlPR8f+OEYr1+QZCkLqi/eyUjbOmlPQ6xwrlDoOaJNgpMf727T9Yo+hokCjIRsZweQ==", + "engines": { + "node": ">= 10.17.0" + } + }, + "node_modules/convert-source-map": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz", + "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.1" + } + }, + "node_modules/copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/cross-spawn/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "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 + }, + "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": { + "cssom": "~0.3.6" + }, + "engines": { + "node": ">=8" + } + }, + "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/dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "dev": true, + "dependencies": { + "assert-plus": "^1.0.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "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, + "dependencies": { + "abab": "^2.0.3", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/date-format": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/date-format/-/date-format-3.0.0.tgz", + "integrity": "sha512-eyTcpKOcamdhWJXj56DpQMo1ylSQpcGtGKXcU0Tb97+K56/CF5amAqqqNj0+KvA0iw2ynxtHWFsPDSClCxe48w==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/debug": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", + "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/decamelize": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-5.0.0.tgz", + "integrity": "sha512-U75DcT5hrio3KNtvdULAWnLiAPbFUC4191ldxMmj4FA/mRuBnmDwU0boNfPyFRhnan+Jm+haLeSn3P0afcBn4w==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/decimal.js": { + "version": "10.2.1", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.2.1.tgz", + "integrity": "sha512-KaL7+6Fw6i5A2XSnsbhm/6B+NuEA7TZ4vqxnd5tXz9sbKtrN9Srj8ab4vKVdK8YAqZO9P1kg45Y6YLoduPf+kw==", + "dev": true + }, + "node_modules/decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", + "dev": true, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/deep-equal": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.0.5.tgz", + "integrity": "sha512-nPiRgmbAtm1a3JsnLCf6/SLfXcjyN5v8L1TXzdCmHrXJ4hx+gW/w1YCcn7z8gJtSiDArZCgYtbao3QqLm/N1Sw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.0", + "es-get-iterator": "^1.1.1", + "get-intrinsic": "^1.0.1", + "is-arguments": "^1.0.4", + "is-date-object": "^1.0.2", + "is-regex": "^1.1.1", + "isarray": "^2.0.5", + "object-is": "^1.1.4", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "regexp.prototype.flags": "^1.3.0", + "side-channel": "^1.0.3", + "which-boxed-primitive": "^1.0.1", + "which-collection": "^1.0.1", + "which-typed-array": "^1.1.2" + } + }, + "node_modules/deep-is": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", + "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", + "dev": true + }, + "node_modules/deepmerge": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", + "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "dev": true, + "dependencies": { + "object-keys": "^1.0.12" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/define-property/node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/define-property/node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/define-property/node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/detect-indent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-5.0.0.tgz", + "integrity": "sha1-OHHMCmoALow+Wzz38zYmRnXwa50=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/detect-newline": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-2.1.0.tgz", + "integrity": "sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/diff-sequences": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-26.6.2.tgz", + "integrity": "sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==", + "dev": true, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/domexception": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", + "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", + "dev": true, + "dependencies": { + "webidl-conversions": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "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, + "engines": { + "node": ">=8" + } + }, + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dev": true, + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", + "dev": true, + "dependencies": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "node_modules/emittery": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.7.2.tgz", + "integrity": "sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "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 + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/entities": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.0.3.tgz", + "integrity": "sha512-MyoZ0jgnLvB2X3Lg5HqpFmn1kybDiIfEQmKzTb5apr51Rb+T3KdmMiqa70T+bhGnyv7bQ6WMj2QMHpGMmlrUYQ==", + "dev": true + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/es-abstract": { + "version": "1.18.0-next.2", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.2.tgz", + "integrity": "sha512-Ih4ZMFHEtZupnUh6497zEL4y2+w8+1ljnCyaTa+adcoafI1GOvMwFlDjBLfWR7y9VLfrjRJe9ocuHY1PSR9jjw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2", + "has": "^1.0.3", + "has-symbols": "^1.0.1", + "is-callable": "^1.2.2", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.1", + "object-inspect": "^1.9.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.3", + "string.prototype.trimstart": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-get-iterator": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.2.tgz", + "integrity": "sha512-+DTO8GYwbMCwbywjimwZMHp8AuYXOS2JZFWoi2AlPOS3ebnII9w/NLpNZtA7A0YLaVDw+O7KFCeoIV7OPvM7hQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.0", + "has-symbols": "^1.0.1", + "is-arguments": "^1.1.0", + "is-map": "^2.0.2", + "is-set": "^2.0.2", + "is-string": "^1.0.5", + "isarray": "^2.0.5" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dev": true, + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "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==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/escodegen": { + "version": "1.14.3", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", + "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", + "dev": true, + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1", + "source-map": "~0.6.1" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=4.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==", + "dev": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/exec-sh": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.4.tgz", + "integrity": "sha512-sEFIkc61v75sWeOe72qyrqg2Qg0OuLESziUDk/O/z2qgS15y2gWVFrI6f2Qn/qw/0/NCfCEsmNA4zOjkwEZT1A==", + "dev": true + }, + "node_modules/execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dev": true, + "dependencies": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "dev": true, + "dependencies": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/expand-brackets/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "node_modules/expect": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/expect/-/expect-26.6.2.tgz", + "integrity": "sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA==", + "dev": true, + "dependencies": { + "@jest/types": "^26.6.2", + "ansi-styles": "^4.0.0", + "jest-get-type": "^26.3.0", + "jest-matcher-utils": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-regex-util": "^26.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dev": true + }, + "node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extend-shallow/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dev": true, + "dependencies": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", + "dev": true, + "engines": [ + "node >=0.6.0" + ] + }, + "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==", + "dev": true + }, + "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==", + "dev": true + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "dev": true + }, + "node_modules/fb-watchman": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz", + "integrity": "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==", + "dev": true, + "dependencies": { + "bser": "2.1.1" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "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": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/flatted": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz", + "integrity": "sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==", + "dev": true + }, + "node_modules/for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/foreach": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz", + "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=", + "dev": true + }, + "node_modules/forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 0.12" + } + }, + "node_modules/fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", + "dev": true, + "dependencies": { + "map-cache": "^0.2.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/fs-extra/node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/fs-extra/node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.1.tgz", + "integrity": "sha512-YR47Eg4hChJGAB1O3yEAOkGO+rlzutoICGqGo9EZ4lKWokzZRSyIW1QmTzqjtw8MJdj9srP869CuWw/hyzSiBw==", + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "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==", + "dev": true, + "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==", + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.0.tgz", + "integrity": "sha512-M11rgtQp5GZMZzDL7jLTNxbDfurpzuau5uqRWDPvlHjfvg3TdScAZo96GLvhMjImrmR8uAt0FS2RLoMrfWGKlg==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + } + }, + "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-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "dev": true, + "dependencies": { + "assert-plus": "^1.0.0" + } + }, + "node_modules/glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz", + "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==", + "dev": true + }, + "node_modules/growly": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz", + "integrity": "sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=", + "dev": true, + "optional": true + }, + "node_modules/har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", + "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", + "dev": true, + "dependencies": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.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==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/has-symbols": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz", + "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", + "dev": true, + "dependencies": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", + "dev": true, + "dependencies": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hosted-git-info": { + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz", + "integrity": "sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==", + "dev": true + }, + "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, + "dependencies": { + "whatwg-encoding": "^1.0.5" + }, + "engines": { + "node": ">=10" + } + }, + "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==", + "dev": true + }, + "node_modules/http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "dev": true, + "dependencies": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + }, + "engines": { + "node": ">=0.8", + "npm": ">=1.3.7" + } + }, + "node_modules/human-signals": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", + "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", + "dev": true, + "engines": { + "node": ">=8.12.0" + } + }, + "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==", + "dev": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/import-local": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.0.2.tgz", + "integrity": "sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA==", + "dev": true, + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/ip-regex": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", + "integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-arguments": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.0.tgz", + "integrity": "sha512-1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "dev": true + }, + "node_modules/is-bigint": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.1.tgz", + "integrity": "sha512-J0ELF4yHFxHy0cmSxZuheDOz2luOdVvqjwmEcj8H/L1JHeuEDSDbeRP+Dk9kFVk5RTFzbucJ2Kb9F7ixY2QaCg==", + "dev": true + }, + "node_modules/is-boolean-object": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.0.tgz", + "integrity": "sha512-a7Uprx8UtD+HWdyYwnD1+ExtTgqQtD2k/1yJgtXP6wnMm8byhkoTZRl+95LLThpzNZJ5aEvi46cdH+ayMFRwmA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "node_modules/is-callable": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.2.tgz", + "integrity": "sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "dev": true, + "dependencies": { + "ci-info": "^2.0.0" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "node_modules/is-core-module": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.2.0.tgz", + "integrity": "sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ==", + "dev": true, + "dependencies": { + "has": "^1.0.3" + } + }, + "node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-date-object": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz", + "integrity": "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-descriptor/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-docker": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.1.1.tgz", + "integrity": "sha512-ZOoqiXfEwtGknTiuDEy8pN2CfE3TxMHprvNer1mXiqwkOT77Rw3YVrUQ52EqAOU3QAWDQ+bQdx7HJzrv7LS2Hw==", + "dev": true, + "optional": true, + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "dev": true, + "engines": { + "node": ">=0.10.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==", + "dev": true, + "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-map": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", + "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", + "dev": true + }, + "node_modules/is-negative-zero": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", + "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==", + "dev": true, + "engines": { + "node": ">= 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==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.4.tgz", + "integrity": "sha512-zohwelOAur+5uXtk8O3GPQ1eAcu4ZX3UwxQhUlfFFMNpUd83gXgjbhJh6HmB6LUNV/ieOLQuDwJO3dWJosUeMw==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "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==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-potential-custom-element-name": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.0.tgz", + "integrity": "sha1-DFLlS8yjkbssSUsh6GJtczbG45c=", + "dev": true + }, + "node_modules/is-regex": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz", + "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-set": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", + "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", + "dev": true + }, + "node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-string": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz", + "integrity": "sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-symbol": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz", + "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.4.tgz", + "integrity": "sha512-ILaRgn4zaSrVNXNGtON6iFNotXW3hAPF3+0fB1usg2jFlWqo5fEDdmJkz0zBfoi7Dgskr8Khi2xZ8cXqZEfXNA==", + "dev": true, + "dependencies": { + "available-typed-arrays": "^1.0.2", + "call-bind": "^1.0.0", + "es-abstract": "^1.18.0-next.1", + "foreach": "^2.0.5", + "has-symbols": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", + "dev": true + }, + "node_modules/is-weakmap": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", + "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", + "dev": true + }, + "node_modules/is-weakset": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.1.tgz", + "integrity": "sha512-pi4vhbhVHGLxohUw7PhGsueT4vRGFoXhP7+RGN0jKIv9+8PWYCQTqtADngrxOm2g46hoH0+g8uZZBzMrvVGDmw==", + "dev": true + }, + "node_modules/is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "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==", + "dev": true, + "optional": true, + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", + "dev": true + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz", + "integrity": "sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz", + "integrity": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==", + "dev": true, + "dependencies": { + "@babel/core": "^7.7.5", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.0.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "dev": true, + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz", + "integrity": "sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg==", + "dev": true, + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-reports": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.0.2.tgz", + "integrity": "sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw==", + "dev": true, + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest/-/jest-26.6.3.tgz", + "integrity": "sha512-lGS5PXGAzR4RF7V5+XObhqz2KZIDUA1yD0DG6pBVmy10eh0ZIXQImRuzocsI/N2XZ1GrLFwTS27In2i2jlpq1Q==", + "dev": true, + "dependencies": { + "@jest/core": "^26.6.3", + "import-local": "^3.0.2", + "jest-cli": "^26.6.3" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-changed-files": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-26.6.2.tgz", + "integrity": "sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ==", + "dev": true, + "dependencies": { + "@jest/types": "^26.6.2", + "execa": "^4.0.0", + "throat": "^5.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-changed-files/node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/jest-changed-files/node_modules/execa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", + "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-changed-files/node_modules/get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-changed-files/node_modules/is-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz", + "integrity": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-changed-files/node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-changed-files/node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-changed-files/node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-changed-files/node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-changed-files/node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/jest-config": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-26.6.3.tgz", + "integrity": "sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^26.6.3", + "@jest/types": "^26.6.2", + "babel-jest": "^26.6.3", + "chalk": "^4.0.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.1", + "graceful-fs": "^4.2.4", + "jest-environment-jsdom": "^26.6.2", + "jest-environment-node": "^26.6.2", + "jest-get-type": "^26.3.0", + "jest-jasmine2": "^26.6.3", + "jest-regex-util": "^26.0.0", + "jest-resolve": "^26.6.2", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "micromatch": "^4.0.2", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-diff": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-26.6.2.tgz", + "integrity": "sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^26.6.2", + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-docblock": { + "version": "26.0.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-26.0.0.tgz", + "integrity": "sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w==", + "dev": true, + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-docblock/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/jest-each": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-26.6.2.tgz", + "integrity": "sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A==", + "dev": true, + "dependencies": { + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "jest-get-type": "^26.3.0", + "jest-util": "^26.6.2", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-environment-jsdom": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-26.6.2.tgz", + "integrity": "sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q==", + "dev": true, + "dependencies": { + "@jest/environment": "^26.6.2", + "@jest/fake-timers": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "jest-mock": "^26.6.2", + "jest-util": "^26.6.2", + "jsdom": "^16.4.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-environment-node": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-26.6.2.tgz", + "integrity": "sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag==", + "dev": true, + "dependencies": { + "@jest/environment": "^26.6.2", + "@jest/fake-timers": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "jest-mock": "^26.6.2", + "jest-util": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-get-type": { + "version": "26.3.0", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz", + "integrity": "sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==", + "dev": true, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-haste-map": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-26.6.2.tgz", + "integrity": "sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==", + "dev": true, + "dependencies": { + "@jest/types": "^26.6.2", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "fsevents": "^2.1.2", + "graceful-fs": "^4.2.4", + "jest-regex-util": "^26.0.0", + "jest-serializer": "^26.6.2", + "jest-util": "^26.6.2", + "jest-worker": "^26.6.2", + "micromatch": "^4.0.2", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "engines": { + "node": ">= 10.14.2" + }, + "optionalDependencies": { + "fsevents": "^2.1.2" + } + }, + "node_modules/jest-jasmine2": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-26.6.3.tgz", + "integrity": "sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==", + "dev": true, + "dependencies": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^26.6.2", + "@jest/source-map": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "expect": "^26.6.2", + "is-generator-fn": "^2.0.0", + "jest-each": "^26.6.2", + "jest-matcher-utils": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-runtime": "^26.6.3", + "jest-snapshot": "^26.6.2", + "jest-util": "^26.6.2", + "pretty-format": "^26.6.2", + "throat": "^5.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-leak-detector": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-26.6.2.tgz", + "integrity": "sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg==", + "dev": true, + "dependencies": { + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-matcher-utils": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-26.6.2.tgz", + "integrity": "sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^26.6.2", + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-message-util": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-26.6.2.tgz", + "integrity": "sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "@jest/types": "^26.6.2", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "micromatch": "^4.0.2", + "pretty-format": "^26.6.2", + "slash": "^3.0.0", + "stack-utils": "^2.0.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-mock": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-26.6.2.tgz", + "integrity": "sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew==", + "dev": true, + "dependencies": { + "@jest/types": "^26.6.2", + "@types/node": "*" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz", + "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-regex-util": { + "version": "26.0.0", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-26.0.0.tgz", + "integrity": "sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==", + "dev": true, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-resolve": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz", + "integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==", + "dev": true, + "dependencies": { + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^26.6.2", + "read-pkg-up": "^7.0.1", + "resolve": "^1.18.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-resolve-dependencies": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-26.6.3.tgz", + "integrity": "sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg==", + "dev": true, + "dependencies": { + "@jest/types": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-snapshot": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-runner": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-26.6.3.tgz", + "integrity": "sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ==", + "dev": true, + "dependencies": { + "@jest/console": "^26.6.2", + "@jest/environment": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.7.1", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "jest-config": "^26.6.3", + "jest-docblock": "^26.0.0", + "jest-haste-map": "^26.6.2", + "jest-leak-detector": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-resolve": "^26.6.2", + "jest-runtime": "^26.6.3", + "jest-util": "^26.6.2", + "jest-worker": "^26.6.2", + "source-map-support": "^0.5.6", + "throat": "^5.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-runtime": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-26.6.3.tgz", + "integrity": "sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw==", + "dev": true, + "dependencies": { + "@jest/console": "^26.6.2", + "@jest/environment": "^26.6.2", + "@jest/fake-timers": "^26.6.2", + "@jest/globals": "^26.6.2", + "@jest/source-map": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0", + "cjs-module-lexer": "^0.6.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.4", + "jest-config": "^26.6.3", + "jest-haste-map": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-mock": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-resolve": "^26.6.2", + "jest-snapshot": "^26.6.2", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "slash": "^3.0.0", + "strip-bom": "^4.0.0", + "yargs": "^15.4.1" + }, + "bin": { + "jest-runtime": "bin/jest-runtime.js" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-serializer": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-26.6.2.tgz", + "integrity": "sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==", + "dev": true, + "dependencies": { + "@types/node": "*", + "graceful-fs": "^4.2.4" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-snapshot": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-26.6.2.tgz", + "integrity": "sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==", + "dev": true, + "dependencies": { + "@babel/types": "^7.0.0", + "@jest/types": "^26.6.2", + "@types/babel__traverse": "^7.0.4", + "@types/prettier": "^2.0.0", + "chalk": "^4.0.0", + "expect": "^26.6.2", + "graceful-fs": "^4.2.4", + "jest-diff": "^26.6.2", + "jest-get-type": "^26.3.0", + "jest-haste-map": "^26.6.2", + "jest-matcher-utils": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-resolve": "^26.6.2", + "natural-compare": "^1.4.0", + "pretty-format": "^26.6.2", + "semver": "^7.3.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-util": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz", + "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==", + "dev": true, + "dependencies": { + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "is-ci": "^2.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-validate": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-26.6.2.tgz", + "integrity": "sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==", + "dev": true, + "dependencies": { + "@jest/types": "^26.6.2", + "camelcase": "^6.0.0", + "chalk": "^4.0.0", + "jest-get-type": "^26.3.0", + "leven": "^3.1.0", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-watcher": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-26.6.2.tgz", + "integrity": "sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ==", + "dev": true, + "dependencies": { + "@jest/test-result": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "jest-util": "^26.6.2", + "string-length": "^4.0.1" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-worker": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", + "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", + "dev": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/jest/node_modules/jest-cli": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-26.6.3.tgz", + "integrity": "sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg==", + "dev": true, + "dependencies": { + "@jest/core": "^26.6.3", + "@jest/test-result": "^26.6.2", + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "import-local": "^3.0.2", + "is-ci": "^2.0.0", + "jest-config": "^26.6.3", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "prompts": "^2.0.1", + "yargs": "^15.4.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "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==", + "dev": true + }, + "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, + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", + "dev": true + }, + "node_modules/jsdom": { + "version": "16.4.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.4.0.tgz", + "integrity": "sha512-lYMm3wYdgPhrl7pDcRmvzPhhrGVBeVhPIqeHjzeiHN3DFmD1RBpbExbi8vU7BJdH8VAZYovR8DMt0PNNDM7k8w==", + "dev": true, + "dependencies": { + "abab": "^2.0.3", + "acorn": "^7.1.1", + "acorn-globals": "^6.0.0", + "cssom": "^0.4.4", + "cssstyle": "^2.2.0", + "data-urls": "^2.0.0", + "decimal.js": "^10.2.0", + "domexception": "^2.0.1", + "escodegen": "^1.14.1", + "html-encoding-sniffer": "^2.0.1", + "is-potential-custom-element-name": "^1.0.0", + "nwsapi": "^2.2.0", + "parse5": "5.1.1", + "request": "^2.88.2", + "request-promise-native": "^1.0.8", + "saxes": "^5.0.0", + "symbol-tree": "^3.2.4", + "tough-cookie": "^3.0.1", + "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.0.0", + "ws": "^7.2.3", + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/jsii": { + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/jsii/-/jsii-1.18.0.tgz", + "integrity": "sha512-5s+kOLF9yJOWjJD3UyaRYGT/PGaPvs0hNBDMtZqJ5AH8yIgjfJz+3+eHDXPLK0ffGaZF83sysiUueA5+Stxkww==", + "dev": true, + "dependencies": { + "@jsii/spec": "^1.18.0", + "case": "^1.6.3", + "colors": "^1.4.0", + "deep-equal": "^2.0.5", + "fs-extra": "^9.1.0", + "log4js": "^6.3.0", + "semver": "^7.3.4", + "semver-intersect": "^1.4.0", + "sort-json": "^2.0.0", + "spdx-license-list": "^6.4.0", + "typescript": "~3.9.7", + "yargs": "^16.2.0" + }, + "bin": { + "jsii": "bin/jsii" + }, + "engines": { + "node": ">= 10.3.0" + } + }, + "node_modules/jsii-pacmak": { + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.18.0.tgz", + "integrity": "sha512-j1gRTaCn+IQ1R2a2uLqCfohY+unI/hD8Zedw9TOCTBjpASDDbDd9DMbOGnQBZ9G2nRq4SUIPg5eVOKPovpTI+w==", + "dev": true, + "dependencies": { + "@jsii/spec": "^1.18.0", + "clone": "^2.1.2", + "codemaker": "^1.18.0", + "commonmark": "^0.29.3", + "escape-string-regexp": "^4.0.0", + "fs-extra": "^9.1.0", + "jsii-reflect": "^1.18.0", + "jsii-rosetta": "^1.18.0", + "semver": "^7.3.4", + "spdx-license-list": "^6.4.0", + "xmlbuilder": "^15.1.1", + "yargs": "^16.2.0" + }, + "bin": { + "jsii-pacmak": "bin/jsii-pacmak" + }, + "engines": { + "node": ">= 10.3.0" + } + }, + "node_modules/jsii-pacmak/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==", + "dev": true, + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jsii-pacmak/node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jsii-reflect": { + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.18.0.tgz", + "integrity": "sha512-IXLdYl+zWVeUModJT51bOIgPjHGhnk8W/LxBMxIIN+VpFHkcPiZX1P7MfOCWIermAkrxVQOHpPbWEKoeUFl7CQ==", + "dev": true, + "dependencies": { + "@jsii/spec": "^1.18.0", + "colors": "^1.4.0", + "fs-extra": "^9.1.0", + "oo-ascii-tree": "^1.18.0", + "yargs": "^16.2.0" + }, + "bin": { + "jsii-tree": "bin/jsii-tree" + }, + "engines": { + "node": ">= 10.3.0" + } + }, + "node_modules/jsii-reflect/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==", + "dev": true, + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jsii-reflect/node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jsii-rosetta": { + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.18.0.tgz", + "integrity": "sha512-gPBt689vGjR9CqmfYHusSsFr/v4v9qcJAKaCqc3uan2nGCe/lugxR416YnhkpsVQBZdT+H4EA2Lp+yjqj9kMUw==", + "dev": true, + "dependencies": { + "@jsii/spec": "^1.18.0", + "commonmark": "^0.29.3", + "fs-extra": "^9.1.0", + "typescript": "~3.9.7", + "xmldom": "^0.4.0", + "yargs": "^16.2.0" + }, + "bin": { + "jsii-rosetta": "bin/jsii-rosetta" + }, + "engines": { + "node": ">= 10.5.0" + } + }, + "node_modules/jsii-rosetta/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==", + "dev": true, + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jsii-rosetta/node_modules/typescript": { + "version": "3.9.7", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.7.tgz", + "integrity": "sha512-BLbiRkiBzAwsjut4x/dsibSTB6yWpwT5qWmC2OfuCg3GgVQCSgMs4vEctYPhsaGtd0AeuuHMkjZ2h2WG8MSzRw==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } + }, + "node_modules/jsii-rosetta/node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jsii-srcmak": { + "version": "0.1.210", + "resolved": "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.210.tgz", + "integrity": "sha512-p9G4DcJIjJXo1LSLFe/lISXB9ijwfSMd/CUWtTWsUo2muVEsaKl8IE7YAiTDiKiP3OTswvzHmqa5DZ1pobLkzg==", + "dev": true, + "dependencies": { + "fs-extra": "^9.0.1", + "jsii": "^1.12.0", + "jsii-pacmak": "^1.12.0", + "ncp": "^2.0.0", + "yargs": "^15.4.1" + }, + "bin": { + "jsii-srcmak": "bin/jsii-srcmak" + } + }, + "node_modules/jsii-srcmak/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==", + "dev": true, + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jsii/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==", + "dev": true, + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jsii/node_modules/typescript": { + "version": "3.9.7", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.7.tgz", + "integrity": "sha512-BLbiRkiBzAwsjut4x/dsibSTB6yWpwT5qWmC2OfuCg3GgVQCSgMs4vEctYPhsaGtd0AeuuHMkjZ2h2WG8MSzRw==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } + }, + "node_modules/jsii/node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "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==", + "dev": true + }, + "node_modules/json-schema": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.5.tgz", + "integrity": "sha512-gWJOWYFrhQ8j7pVm0EM8Slr+EPVq1Phf6lvzvD/WCeqkrx/f2xBI0xOsRRS9xCn3I4vKtP519dvs3TP09r24wQ==", + "dev": true + }, + "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 + }, + "node_modules/json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", + "dev": true + }, + "node_modules/json2jsii": { + "version": "0.1.188", + "resolved": "https://registry.npmjs.org/json2jsii/-/json2jsii-0.1.188.tgz", + "integrity": "sha512-XeUcBQl0rngTFmiSIx0XNW+g0QgAJcqwsUYzvGcDPPSvPngIGmJ/X6d0UH/nDmSVyEilYyKnVP7iYh3y9by9fA==", + "dev": true, + "dependencies": { + "camelcase": "^6.2.0", + "json-schema": "^0.2.5", + "snake-case": "^3.0.4" + }, + "engines": { + "node": ">= 10.17.0" + } + }, + "node_modules/json5": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz", + "integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==", + "dev": true, + "dependencies": { + "minimist": "^1.2.5" + }, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "node_modules/jsonschema": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/jsonschema/-/jsonschema-1.4.0.tgz", + "integrity": "sha512-/YgW6pRMr6M7C+4o8kS+B/2myEpHCrxO4PEWnqJNBFMjn7EWXqlQ4tGwL6xTHeRplwuZmcAncdvfOad1nT2yMw==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/jsprim": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", + "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "dev": true, + "engines": [ + "node >=0.6.0" + ], + "dependencies": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + } + }, + "node_modules/jsprim/node_modules/json-schema": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", + "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=", + "dev": true + }, + "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==", + "dev": true, + "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==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "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==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "dev": true, + "dependencies": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lines-and-columns": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz", + "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=", + "dev": true + }, + "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.17.20", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz", + "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==", + "dev": true + }, + "node_modules/lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=", + "dev": true + }, + "node_modules/log4js": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/log4js/-/log4js-6.3.0.tgz", + "integrity": "sha512-Mc8jNuSFImQUIateBFwdOQcmC6Q5maU0VVvdC2R6XMb66/VnT+7WS4D/0EeNMZu1YODmJe5NIn2XftCzEocUgw==", + "dev": true, + "dependencies": { + "date-format": "^3.0.0", + "debug": "^4.1.1", + "flatted": "^2.0.1", + "rfdc": "^1.1.4", + "streamroller": "^2.2.4" + }, + "engines": { + "node": ">=8.0" + } + }, + "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==", + "dev": true, + "dependencies": { + "tslib": "^2.0.3" + } + }, + "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==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "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.11", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.11.tgz", + "integrity": "sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=", + "dev": true, + "dependencies": { + "tmpl": "1.0.x" + } + }, + "node_modules/map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", + "dev": true, + "dependencies": { + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mdurl": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", + "integrity": "sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4=", + "dev": true + }, + "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==", + "dev": true + }, + "node_modules/micromatch": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz", + "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==", + "dev": true, + "dependencies": { + "braces": "^3.0.1", + "picomatch": "^2.0.5" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/mime-db": { + "version": "1.45.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.45.0.tgz", + "integrity": "sha512-CkqLUxUk15hofLoLyljJSrukZi8mAtgd+yE5uO4tqRZsdsAJKv0O+rFMhVDRJgozy+yG6md5KwuXhD4ocIoP+w==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.28", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.28.tgz", + "integrity": "sha512-0TO2yJ5YHYr7M2zzT7gDU1tbwHxEUWBCLt0lscSNpcdAfFyJOVEpRYNS7EXVcTLNj/25QO8gulHC5JtTzSE2UQ==", + "dev": true, + "dependencies": { + "mime-db": "1.45.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", + "dev": true + }, + "node_modules/mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "dev": true, + "dependencies": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mixin-deep/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "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/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "dev": true, + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", + "dev": true + }, + "node_modules/ncp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz", + "integrity": "sha1-GVoh1sRuNh0vsSgbo4uR6d9727M=", + "dev": true, + "bin": { + "ncp": "bin/ncp" + } + }, + "node_modules/nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "dev": true + }, + "node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dev": true, + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=", + "dev": true + }, + "node_modules/node-modules-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz", + "integrity": "sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/node-notifier": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-8.0.1.tgz", + "integrity": "sha512-BvEXF+UmsnAfYfoapKM9nGxnP+Wn7P91YfXmrKnfcYCx6VBeoN5Ez5Ogck6I8Bi5k4RlpqRYaw75pAwzX9OphA==", + "dev": true, + "optional": true, + "dependencies": { + "growly": "^1.3.0", + "is-wsl": "^2.2.0", + "semver": "^7.3.2", + "shellwords": "^0.1.1", + "uuid": "^8.3.0", + "which": "^2.0.2" + } + }, + "node_modules/node-notifier/node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "optional": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "node_modules/normalize-package-data/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "dev": true, + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/nwsapi": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz", + "integrity": "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==", + "dev": true + }, + "node_modules/oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", + "dev": true, + "dependencies": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz", + "integrity": "sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==", + "dev": true + }, + "node_modules/object-is": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.4.tgz", + "integrity": "sha512-1ZvAZ4wlF7IyPVOcE1Omikt7UpaFlOQq0HlSti+ZvDH3UiD2brwGMwDbyV43jao2bKJ+4+WdPJHSd7kgzKYVqg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", + "dev": true, + "dependencies": { + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.assign": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", + "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/oo-ascii-tree": { + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.18.0.tgz", + "integrity": "sha512-++zVwRSnfwwx8BRBfPz7xdKUnOf7RYeX1RTklO37btNcbHPvRlKSZ9o1/D9SRGzmHf3lV4zKVbYTN1VOWfQvjA==", + "dev": true, + "engines": { + "node": ">= 10.3.0" + } + }, + "node_modules/optionator": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "dev": true, + "dependencies": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-each-series": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-2.2.0.tgz", + "integrity": "sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "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-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "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" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "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/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/parse5": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.1.tgz", + "integrity": "sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==", + "dev": true + }, + "node_modules/pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "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", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/path-parse": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", + "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==", + "dev": true + }, + "node_modules/performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", + "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==", + "dev": true, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/pirates": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.1.tgz", + "integrity": "sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==", + "dev": true, + "dependencies": { + "node-modules-regexp": "^1.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "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": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/pretty-format": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", + "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", + "dev": true, + "dependencies": { + "@jest/types": "^26.6.2", + "ansi-regex": "^5.0.0", + "ansi-styles": "^4.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/prompts": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.0.tgz", + "integrity": "sha512-awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm/HBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ==", + "dev": true, + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/psl": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", + "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==", + "dev": true + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/qs": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", + "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", + "dev": true, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/react-is": { + "version": "17.0.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.1.tgz", + "integrity": "sha512-NAnt2iGDXohE5LI7uBnLnqvLQMtzhkiAOLXTmv+qnF9Ky7xAPcX8Up/xWIhxvLVGJvuLiNc4xQLtuqDRzb4fSA==", + "dev": true + }, + "node_modules/read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "dev": true, + "dependencies": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dev": true, + "dependencies": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg/node_modules/type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dev": true, + "dependencies": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regexp.prototype.flags": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz", + "integrity": "sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", + "dev": true + }, + "node_modules/repeat-element": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz", + "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "dev": true, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/request": { + "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "dev": true, + "dependencies": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/request-promise-core": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.4.tgz", + "integrity": "sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==", + "dev": true, + "dependencies": { + "lodash": "^4.17.19" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/request-promise-native": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.9.tgz", + "integrity": "sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==", + "dev": true, + "dependencies": { + "request-promise-core": "1.1.4", + "stealthy-require": "^1.1.1", + "tough-cookie": "^2.3.3" + }, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/request-promise-native/node_modules/tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "dev": true, + "dependencies": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/request/node_modules/tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "dev": true, + "dependencies": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/request/node_modules/uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "dev": true, + "bin": { + "uuid": "bin/uuid" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "dev": true + }, + "node_modules/resolve": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz", + "integrity": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==", + "dev": true, + "dependencies": { + "is-core-module": "^2.1.0", + "path-parse": "^1.0.6" + } + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "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==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", + "dev": true + }, + "node_modules/ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "dev": true, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/rfdc": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.2.0.tgz", + "integrity": "sha512-ijLyszTMmUrXvjSooucVQwimGUk84eRcmCuLV8Xghe3UO85mjUtRAHRyoMM6XtyqbECaXuBWx18La3523sXINA==", + "dev": true + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/rsvp": { + "version": "4.8.5", + "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz", + "integrity": "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==", + "dev": true, + "engines": { + "node": "6.* || >= 7.*" + } + }, + "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==", + "dev": true + }, + "node_modules/safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "dev": true, + "dependencies": { + "ret": "~0.1.10" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "node_modules/sane": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz", + "integrity": "sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==", + "dev": true, + "dependencies": { + "@cnakazawa/watch": "^1.0.3", + "anymatch": "^2.0.0", + "capture-exit": "^2.0.0", + "exec-sh": "^0.3.2", + "execa": "^1.0.0", + "fb-watchman": "^2.0.0", + "micromatch": "^3.1.4", + "minimist": "^1.1.1", + "walker": "~1.0.5" + }, + "bin": { + "sane": "src/cli.js" + }, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/sane/node_modules/anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "dependencies": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "node_modules/sane/node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dev": true, + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/saxes": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", + "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", + "dev": true, + "dependencies": { + "xmlchars": "^2.2.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver-intersect": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/semver-intersect/-/semver-intersect-1.4.0.tgz", + "integrity": "sha512-d8fvGg5ycKAq0+I6nfWeCx6ffaWJCsBYU0H2Rq56+/zFePYfT8mXkB3tWBSjR5BerkHNZ5eTPIk1/LBYas35xQ==", + "dev": true, + "dependencies": { + "semver": "^5.0.0" + } + }, + "node_modules/semver-intersect/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", + "dev": true + }, + "node_modules/set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "dev": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/set-value/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true, + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/shellwords": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz", + "integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==", + "dev": true, + "optional": true + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + } + }, + "node_modules/signal-exit": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", + "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==", + "dev": true + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/snake-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz", + "integrity": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==", + "dev": true, + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "dev": true, + "dependencies": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "dev": true, + "dependencies": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "dev": true, + "dependencies": { + "kind-of": "^3.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/snapdragon/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "node_modules/snapdragon/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sort-json": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/sort-json/-/sort-json-2.0.0.tgz", + "integrity": "sha512-OgXPErPJM/rBK5OhzIJ+etib/BmLQ1JY55Nb/ElhoWUec62pXNF/X6DrecHq3NW5OAGX0KxYD7m0HtgB9dvGeA==", + "dev": true, + "dependencies": { + "detect-indent": "^5.0.0", + "detect-newline": "^2.1.0", + "minimist": "^1.2.0" + }, + "bin": { + "sort-json": "app/cmd.js" + } + }, + "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": ">=0.10.0" + } + }, + "node_modules/source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "dev": true, + "dependencies": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.19", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", + "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/source-map-url": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz", + "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=", + "dev": true + }, + "node_modules/spdx-correct": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", + "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", + "dev": true, + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "dev": true + }, + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-license-ids": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz", + "integrity": "sha512-U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ==", + "dev": true + }, + "node_modules/spdx-license-list": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/spdx-license-list/-/spdx-license-list-6.4.0.tgz", + "integrity": "sha512-4BxgJ1IZxTJuX1YxMGu2cRYK46Bk9zJNTK2/R0wNZR0cm+6SVl26/uG7FQmQtxoJQX1uZ0EpTi2L7zvMLboaBA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "dev": true, + "dependencies": { + "extend-shallow": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "dev": true + }, + "node_modules/sscaff": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/sscaff/-/sscaff-1.2.0.tgz", + "integrity": "sha512-Xyf2tWLnO0Z297FKag0e8IXFIpnYRWZ3FBn4dN2qlMRsOcpf0P54FPhvdcb1Es0Fm4hbhYYXa23jR+VPGPQhSg==", + "dev": true + }, + "node_modules/sshpk": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", + "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", + "dev": true, + "dependencies": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stack-utils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.3.tgz", + "integrity": "sha512-gL//fkxfWUsIlFL2Tl42Cl6+HFALEaB1FU76I/Fy+oZjRreP7OPMXFlGbxM7NQsI0ZpUfw76sHnv0WNYuTb7Iw==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", + "dev": true, + "dependencies": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stealthy-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", + "integrity": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/streamroller": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/streamroller/-/streamroller-2.2.4.tgz", + "integrity": "sha512-OG79qm3AujAM9ImoqgWEY1xG4HX+Lw+yY6qZj9R1K2mhF5bEmQ849wvrb+4vt4jLMLzwXttJlQbOdPOQVRv7DQ==", + "dev": true, + "dependencies": { + "date-format": "^2.1.0", + "debug": "^4.1.1", + "fs-extra": "^8.1.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/streamroller/node_modules/date-format": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/date-format/-/date-format-2.1.0.tgz", + "integrity": "sha512-bYQuGLeFxhkxNOF3rcMtiZxvCBAquGzZm6oWA1oZ0g2THUzivaRhv8uOhdr19LmoobSOLoIAxeUK2RdbM8IFTA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/string-length": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.1.tgz", + "integrity": "sha512-PKyXUd0LK0ePjSOnWn34V2uD6acUWev9uy0Ft05k0E8xRW+SKcA0F7eMr7h5xlzfn+4O3N+55rduYyet3Jk+jw==", + "dev": true, + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-width": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", + "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string.prototype.repeat": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-0.2.0.tgz", + "integrity": "sha1-q6Nt4I3O5qWjN9SbLqHaGyj8Ds8=", + "dev": true + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz", + "integrity": "sha512-ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.3.tgz", + "integrity": "sha512-oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "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/supports-hyperlinks": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.1.0.tgz", + "integrity": "sha512-zoE5/e+dnEijk6ASB6/qrK+oYdm2do1hjoLWrqUC/8WEIW1gbxFcKuBof7sW8ArN6e+AYvsE8HBGiVRWL/F5CA==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", + "dev": true + }, + "node_modules/terminal-link": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", + "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", + "dev": true, + "dependencies": { + "ansi-escapes": "^4.2.1", + "supports-hyperlinks": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/throat": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/throat/-/throat-5.0.0.tgz", + "integrity": "sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==", + "dev": true + }, + "node_modules/tmpl": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz", + "integrity": "sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE=", + "dev": true + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-object-path/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "dev": true, + "dependencies": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/tough-cookie": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-3.0.1.tgz", + "integrity": "sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg==", + "dev": true, + "dependencies": { + "ip-regex": "^2.1.0", + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tr46": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.0.2.tgz", + "integrity": "sha512-3n1qG+/5kg+jrbTzwAykB5yRYtQCTqOGKq5U5PE3b0a1/mzo6snDhjGS0zJVJunO0NrT3Dg1MLy5TjWP/UJppg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ts-jest": { + "version": "26.5.0", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-26.5.0.tgz", + "integrity": "sha512-Ya4IQgvIFNa2Mgq52KaO8yBw2W8tWp61Ecl66VjF0f5JaV8u50nGoptHVILOPGoI7SDnShmEqnYQEmyHdQ+56g==", + "dev": true, + "dependencies": { + "@types/jest": "26.x", + "bs-logger": "0.x", + "buffer-from": "1.x", + "fast-json-stable-stringify": "2.x", + "jest-util": "^26.1.0", + "json5": "2.x", + "lodash": "4.x", + "make-error": "1.x", + "mkdirp": "1.x", + "semver": "7.x", + "yargs-parser": "20.x" + }, + "bin": { + "ts-jest": "cli.js" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/tslib": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.1.0.tgz", + "integrity": "sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==", + "dev": true + }, + "node_modules/tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "dev": true, + "dependencies": { + "safe-buffer": "^5.0.1" + }, + "engines": { + "node": "*" + } + }, + "node_modules/tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", + "dev": true + }, + "node_modules/type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "dev": true, + "dependencies": { + "prelude-ls": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "dev": true, + "dependencies": { + "is-typedarray": "^1.0.0" + } + }, + "node_modules/typescript": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.1.3.tgz", + "integrity": "sha512-B3ZIOf1IKeH2ixgHhj6la6xdwR9QrLC5d1VKeCSY4tvkqhF2eqd9O7txNlS0PO3GrBAFIdr3L1ndNwteUbZLYg==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } + }, + "node_modules/union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "dev": true, + "dependencies": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "dev": true, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", + "dev": true, + "dependencies": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", + "dev": true, + "dependencies": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value/node_modules/isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "dev": true, + "dependencies": { + "isarray": "1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", + "dev": true + }, + "node_modules/use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "dev": true, + "optional": true, + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/v8-to-istanbul": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-7.1.0.tgz", + "integrity": "sha512-uXUVqNUCLa0AH1vuVxzi+MI4RfxEOKt9pBgKwHbgH7st8Kv2P1m+jvWNnektzBh5QShF3ODgKmUFCf38LnVz1g==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/v8-to-istanbul/node_modules/source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "node_modules/verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "dev": true, + "engines": [ + "node >=0.6.0" + ], + "dependencies": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "node_modules/w3c-hr-time": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", + "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", + "dev": true, + "dependencies": { + "browser-process-hrtime": "^1.0.0" + } + }, + "node_modules/w3c-xmlserializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", + "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", + "dev": true, + "dependencies": { + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/walker": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz", + "integrity": "sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=", + "dev": true, + "dependencies": { + "makeerror": "1.0.x" + } + }, + "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, + "engines": { + "node": ">=10.4" + } + }, + "node_modules/whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", + "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", + "dev": true, + "dependencies": { + "iconv-lite": "0.4.24" + } + }, + "node_modules/whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", + "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==", + "dev": true + }, + "node_modules/whatwg-url": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.4.0.tgz", + "integrity": "sha512-vwTUFf6V4zhcPkWp/4CQPr1TW9Ml6SF4lVyaIMBdJw5i6qUUJ1QWM4Z6YYVkfka0OUIzVo/0aNtGVGk256IKWw==", + "dev": true, + "dependencies": { + "lodash.sortby": "^4.7.0", + "tr46": "^2.0.2", + "webidl-conversions": "^6.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dev": true, + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + } + }, + "node_modules/which-collection": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", + "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", + "dev": true, + "dependencies": { + "is-map": "^2.0.1", + "is-set": "^2.0.1", + "is-weakmap": "^2.0.1", + "is-weakset": "^2.0.1" + } + }, + "node_modules/which-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", + "dev": true + }, + "node_modules/which-typed-array": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.4.tgz", + "integrity": "sha512-49E0SpUe90cjpoc7BOJwyPHRqSAd12c10Qm2amdEZrJPCY2NDxaW01zHITrem+rnETY3dwrbH3UUrUwagfCYDA==", + "dev": true, + "dependencies": { + "available-typed-arrays": "^1.0.2", + "call-bind": "^1.0.0", + "es-abstract": "^1.18.0-next.1", + "foreach": "^2.0.5", + "function-bind": "^1.1.1", + "has-symbols": "^1.0.1", + "is-typed-array": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "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, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "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==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "node_modules/ws": { + "version": "7.4.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.2.tgz", + "integrity": "sha512-T4tewALS3+qsrpGI/8dqNMLIVdq/g/85U98HPMa6F0m6xTbvhXU6RCQLqPH3+SlomNV/LdY6RXEbBpMH6EOJnA==", + "dev": true, + "engines": { + "node": ">=8.3.0" + } + }, + "node_modules/xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==", + "dev": true + }, + "node_modules/xmlbuilder": { + "version": "15.1.1", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-15.1.1.tgz", + "integrity": "sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==", + "dev": true, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", + "dev": true + }, + "node_modules/xmldom": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/xmldom/-/xmldom-0.4.0.tgz", + "integrity": "sha512-2E93k08T30Ugs+34HBSTQLVtpi6mCddaY8uO+pMNk1pqSjV5vElzn4mmh6KLxN3hki8rNcHSYzILoh3TEWORvA==", + "dev": true, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/y18n": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.5.tgz", + "integrity": "sha512-hsRUr4FFrvhhRH12wOdfs38Gy7k2FFzB9qgN9v3aLykRq0dRcdcpz5C9FxdS2NuhOrI/628b/KSTJ3rwHysYSg==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/yaml": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.0.tgz", + "integrity": "sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "dev": true, + "dependencies": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yargs-parser": { + "version": "20.2.4", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz", + "integrity": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs/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" + } + }, + "node_modules/yargs/node_modules/cliui": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" + } + }, + "node_modules/yargs/node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yargs/node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yargs/node_modules/y18n": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz", + "integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==", + "dev": true + }, + "node_modules/yargs/node_modules/yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "dev": true, + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "engines": { + "node": ">=6" + } + } + }, "dependencies": { "@babel/code-frame": { "version": "7.12.11", From 8d5f965b9295a4d3f0b1234565e6060e661fdb37 Mon Sep 17 00:00:00 2001 From: Kingdon Barrett Date: Mon, 1 Feb 2021 17:12:31 -0500 Subject: [PATCH 5/5] show how to update a deploy through cdk8s synth --- synths/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/synths/main.ts b/synths/main.ts index 8b9cadb..df0ec97 100644 --- a/synths/main.ts +++ b/synths/main.ts @@ -29,7 +29,7 @@ export class MyChart extends Chart { containers: [ { name: 'hello-kubernetes', - image: 'paulbouwer/hello-kubernetes:1.7', + image: 'paulbouwer/hello-kubernetes:1.8', ports: [ { containerPort: 8080 } ] } ]