From 2b786e7f4c78e13a29f10ccc5f580c2056a1ef1f Mon Sep 17 00:00:00 2001 From: "K.Himeno" <6715229+Himenon@users.noreply.github.com> Date: Wed, 27 May 2026 08:16:48 +0900 Subject: [PATCH 1/4] test: add snapshot tests for PathItem-level path parameters with same-named query parameter Add a Kubernetes-style scenario to the path-parameter fixture where: - Path parameters are defined at the PathItem level (not per-operation) - A query parameter shares the same name as one of the path parameters (`path`) - Multiple HTTP methods (GET, HEAD) inherit parameters from the PathItem This reproduces the pattern found in `connectCoreV1HeadNodeProxyWithPath` (/api/v1/nodes/{name}/proxy/{path}) from the Kubernetes OpenAPI spec, and captures the current code generation behavior as snapshot baselines. Co-Authored-By: Claude Sonnet 4.6 --- .../__snapshots__/parameter-test.ts.snap | 163 ++++++++++++++++++ .../typedef-with-template-test.ts.snap | 52 +++++- .../__snapshots__/parameter-test.ts.snap | 163 ++++++++++++++++++ .../typedef-with-template-test.ts.snap | 52 +++++- test/path-parameter/index.yml | 35 ++++ 5 files changed, 463 insertions(+), 2 deletions(-) diff --git a/test/__tests__/class/__snapshots__/parameter-test.ts.snap b/test/__tests__/class/__snapshots__/parameter-test.ts.snap index ad6baa6..dc69f67 100644 --- a/test/__tests__/class/__snapshots__/parameter-test.ts.snap +++ b/test/__tests__/class/__snapshots__/parameter-test.ts.snap @@ -746,6 +746,169 @@ exports[`Parameter > required フィールドを省略したパスパラメー } } }, + { + "operationId": "getNodeProxyWithPath", + "convertedParams": { + "escapedOperationId": "getNodeProxyWithPath", + "argumentParamsTypeDeclaration": "Params$getNodeProxyWithPath", + "functionName": "getNodeProxyWithPath", + "requestContentTypeName": "RequestContentType$getNodeProxyWithPath", + "responseContentTypeName": "ResponseContentType$getNodeProxyWithPath", + "parameterName": "Parameter$getNodeProxyWithPath", + "requestBodyName": "RequestBody$getNodeProxyWithPath", + "hasRequestBody": false, + "hasParameter": true, + "pickedParameters": [ + { + "name": "name", + "in": "path", + "required": true + }, + { + "name": "path", + "in": "path", + "required": true + }, + { + "name": "path", + "in": "query" + } + ], + "requestContentTypes": [], + "responseSuccessNames": [ + "Response$getNodeProxyWithPath$Status$200" + ], + "responseFirstSuccessName": "Response$getNodeProxyWithPath$Status$200", + "has2OrMoreSuccessNames": false, + "responseErrorNames": [], + "has2OrMoreRequestContentTypes": false, + "successResponseContentTypes": [ + "application/json" + ], + "successResponseFirstContentType": "application/json", + "has2OrMoreSuccessResponseContentTypes": false, + "hasAdditionalHeaders": false, + "hasQueryParameters": true + }, + "operationParams": { + "httpMethod": "get", + "requestUri": "/nodes/{name}/proxy/{path}", + "comment": "PathItem レベルのパスパラメータ継承 (GET)", + "deprecated": false, + "parameters": [ + { + "in": "path", + "name": "name", + "schema": { + "type": "string" + }, + "required": true + }, + { + "in": "path", + "name": "path", + "schema": { + "type": "string" + }, + "required": true + }, + { + "in": "query", + "name": "path", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "type": "string" + } + } + } + } + } + } + }, + { + "operationId": "headNodeProxyWithPath", + "convertedParams": { + "escapedOperationId": "headNodeProxyWithPath", + "argumentParamsTypeDeclaration": "Params$headNodeProxyWithPath", + "functionName": "headNodeProxyWithPath", + "requestContentTypeName": "RequestContentType$headNodeProxyWithPath", + "responseContentTypeName": "ResponseContentType$headNodeProxyWithPath", + "parameterName": "Parameter$headNodeProxyWithPath", + "requestBodyName": "RequestBody$headNodeProxyWithPath", + "hasRequestBody": false, + "hasParameter": true, + "pickedParameters": [ + { + "name": "name", + "in": "path", + "required": true + }, + { + "name": "path", + "in": "path", + "required": true + }, + { + "name": "path", + "in": "query" + } + ], + "requestContentTypes": [], + "responseSuccessNames": [], + "has2OrMoreSuccessNames": false, + "responseErrorNames": [], + "has2OrMoreRequestContentTypes": false, + "successResponseContentTypes": [], + "has2OrMoreSuccessResponseContentTypes": false, + "hasAdditionalHeaders": false, + "hasQueryParameters": true + }, + "operationParams": { + "httpMethod": "head", + "requestUri": "/nodes/{name}/proxy/{path}", + "comment": "PathItem レベルのパスパラメータ継承 (HEAD)", + "deprecated": false, + "parameters": [ + { + "in": "path", + "name": "name", + "schema": { + "type": "string" + }, + "required": true + }, + { + "in": "path", + "name": "path", + "schema": { + "type": "string" + }, + "required": true + }, + { + "in": "query", + "name": "path", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "OK" + } + } + } + }, { "operationId": "getUserPost", "convertedParams": { diff --git a/test/__tests__/class/__snapshots__/typedef-with-template-test.ts.snap b/test/__tests__/class/__snapshots__/typedef-with-template-test.ts.snap index 01c840c..1e665c2 100644 --- a/test/__tests__/class/__snapshots__/typedef-with-template-test.ts.snap +++ b/test/__tests__/class/__snapshots__/typedef-with-template-test.ts.snap @@ -1756,6 +1756,17 @@ export interface Response$getItemById$Status$200 { name?: string; }; } +export interface Parameter$getNodeProxyWithPath { + name: string; + path?: string; +} +export interface Response$getNodeProxyWithPath$Status$200 { + "application/json": string; +} +export interface Parameter$headNodeProxyWithPath { + name: string; + path?: string; +} export interface Parameter$getUserPost { userId: string; postId: number; @@ -1771,6 +1782,13 @@ export type ResponseContentType$getItemById = keyof Response$getItemById$Status$ export interface Params$getItemById { parameter: Parameter$getItemById; } +export type ResponseContentType$getNodeProxyWithPath = keyof Response$getNodeProxyWithPath$Status$200; +export interface Params$getNodeProxyWithPath { + parameter: Parameter$getNodeProxyWithPath; +} +export interface Params$headNodeProxyWithPath { + parameter: Parameter$headNodeProxyWithPath; +} export type ResponseContentType$getUserPost = keyof Response$getUserPost$Status$200; export interface Params$getUserPost { parameter: Parameter$getUserPost; @@ -1787,9 +1805,11 @@ export interface QueryParameter { export interface QueryParameters { [key: string]: QueryParameter; } -export type SuccessResponses = Response$getItemById$Status$200 | Response$getUserPost$Status$200; +export type SuccessResponses = Response$getItemById$Status$200 | Response$getNodeProxyWithPath$Status$200 | Response$getUserPost$Status$200; export namespace ErrorResponse { export type getItemById = void; + export type getNodeProxyWithPath = void; + export type headNodeProxyWithPath = void; export type getUserPost = void; } export interface Encoding { @@ -1825,6 +1845,36 @@ export class Client { headers }, option); } + /** PathItem レベルのパスパラメータ継承 (GET) */ + public async getNodeProxyWithPath(params: Params$getNodeProxyWithPath, option?: RequestOption): Promise { + const url = this.baseUrl + \`/nodes/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const headers = { + Accept: "application/json" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** PathItem レベルのパスパラメータ継承 (HEAD) */ + public async headNodeProxyWithPath(params: Params$headNodeProxyWithPath, option?: RequestOption): Promise { + const url = this.baseUrl + \`/nodes/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const headers = {}; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "HEAD", + url, + headers, + queryParameters: queryParameters + }, option); + } /** 複数のパスパラメータで required を省略したケース */ public async getUserPost(params: Params$getUserPost, option?: RequestOption): Promise { const url = this.baseUrl + \`/users/\${encodeURIComponent(params.parameter.userId)}/posts/\${encodeURIComponent(params.parameter.postId)}\`; diff --git a/test/__tests__/functional/__snapshots__/parameter-test.ts.snap b/test/__tests__/functional/__snapshots__/parameter-test.ts.snap index ad6baa6..dc69f67 100644 --- a/test/__tests__/functional/__snapshots__/parameter-test.ts.snap +++ b/test/__tests__/functional/__snapshots__/parameter-test.ts.snap @@ -746,6 +746,169 @@ exports[`Parameter > required フィールドを省略したパスパラメー } } }, + { + "operationId": "getNodeProxyWithPath", + "convertedParams": { + "escapedOperationId": "getNodeProxyWithPath", + "argumentParamsTypeDeclaration": "Params$getNodeProxyWithPath", + "functionName": "getNodeProxyWithPath", + "requestContentTypeName": "RequestContentType$getNodeProxyWithPath", + "responseContentTypeName": "ResponseContentType$getNodeProxyWithPath", + "parameterName": "Parameter$getNodeProxyWithPath", + "requestBodyName": "RequestBody$getNodeProxyWithPath", + "hasRequestBody": false, + "hasParameter": true, + "pickedParameters": [ + { + "name": "name", + "in": "path", + "required": true + }, + { + "name": "path", + "in": "path", + "required": true + }, + { + "name": "path", + "in": "query" + } + ], + "requestContentTypes": [], + "responseSuccessNames": [ + "Response$getNodeProxyWithPath$Status$200" + ], + "responseFirstSuccessName": "Response$getNodeProxyWithPath$Status$200", + "has2OrMoreSuccessNames": false, + "responseErrorNames": [], + "has2OrMoreRequestContentTypes": false, + "successResponseContentTypes": [ + "application/json" + ], + "successResponseFirstContentType": "application/json", + "has2OrMoreSuccessResponseContentTypes": false, + "hasAdditionalHeaders": false, + "hasQueryParameters": true + }, + "operationParams": { + "httpMethod": "get", + "requestUri": "/nodes/{name}/proxy/{path}", + "comment": "PathItem レベルのパスパラメータ継承 (GET)", + "deprecated": false, + "parameters": [ + { + "in": "path", + "name": "name", + "schema": { + "type": "string" + }, + "required": true + }, + { + "in": "path", + "name": "path", + "schema": { + "type": "string" + }, + "required": true + }, + { + "in": "query", + "name": "path", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "type": "string" + } + } + } + } + } + } + }, + { + "operationId": "headNodeProxyWithPath", + "convertedParams": { + "escapedOperationId": "headNodeProxyWithPath", + "argumentParamsTypeDeclaration": "Params$headNodeProxyWithPath", + "functionName": "headNodeProxyWithPath", + "requestContentTypeName": "RequestContentType$headNodeProxyWithPath", + "responseContentTypeName": "ResponseContentType$headNodeProxyWithPath", + "parameterName": "Parameter$headNodeProxyWithPath", + "requestBodyName": "RequestBody$headNodeProxyWithPath", + "hasRequestBody": false, + "hasParameter": true, + "pickedParameters": [ + { + "name": "name", + "in": "path", + "required": true + }, + { + "name": "path", + "in": "path", + "required": true + }, + { + "name": "path", + "in": "query" + } + ], + "requestContentTypes": [], + "responseSuccessNames": [], + "has2OrMoreSuccessNames": false, + "responseErrorNames": [], + "has2OrMoreRequestContentTypes": false, + "successResponseContentTypes": [], + "has2OrMoreSuccessResponseContentTypes": false, + "hasAdditionalHeaders": false, + "hasQueryParameters": true + }, + "operationParams": { + "httpMethod": "head", + "requestUri": "/nodes/{name}/proxy/{path}", + "comment": "PathItem レベルのパスパラメータ継承 (HEAD)", + "deprecated": false, + "parameters": [ + { + "in": "path", + "name": "name", + "schema": { + "type": "string" + }, + "required": true + }, + { + "in": "path", + "name": "path", + "schema": { + "type": "string" + }, + "required": true + }, + { + "in": "query", + "name": "path", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "OK" + } + } + } + }, { "operationId": "getUserPost", "convertedParams": { diff --git a/test/__tests__/functional/__snapshots__/typedef-with-template-test.ts.snap b/test/__tests__/functional/__snapshots__/typedef-with-template-test.ts.snap index c867dd2..d4c6e2e 100644 --- a/test/__tests__/functional/__snapshots__/typedef-with-template-test.ts.snap +++ b/test/__tests__/functional/__snapshots__/typedef-with-template-test.ts.snap @@ -1773,6 +1773,17 @@ export interface Response$getItemById$Status$200 { name?: string; }; } +export interface Parameter$getNodeProxyWithPath { + name: string; + path?: string; +} +export interface Response$getNodeProxyWithPath$Status$200 { + "application/json": string; +} +export interface Parameter$headNodeProxyWithPath { + name: string; + path?: string; +} export interface Parameter$getUserPost { userId: string; postId: number; @@ -1788,6 +1799,13 @@ export type ResponseContentType$getItemById = keyof Response$getItemById$Status$ export interface Params$getItemById { parameter: Parameter$getItemById; } +export type ResponseContentType$getNodeProxyWithPath = keyof Response$getNodeProxyWithPath$Status$200; +export interface Params$getNodeProxyWithPath { + parameter: Parameter$getNodeProxyWithPath; +} +export interface Params$headNodeProxyWithPath { + parameter: Parameter$headNodeProxyWithPath; +} export type ResponseContentType$getUserPost = keyof Response$getUserPost$Status$200; export interface Params$getUserPost { parameter: Parameter$getUserPost; @@ -1804,9 +1822,11 @@ export interface QueryParameter { export interface QueryParameters { [key: string]: QueryParameter; } -export type SuccessResponses = Response$getItemById$Status$200 | Response$getUserPost$Status$200; +export type SuccessResponses = Response$getItemById$Status$200 | Response$getNodeProxyWithPath$Status$200 | Response$getUserPost$Status$200; export namespace ErrorResponse { export type getItemById = void; + export type getNodeProxyWithPath = void; + export type headNodeProxyWithPath = void; export type getUserPost = void; } export interface Encoding { @@ -1842,6 +1862,36 @@ export const createClient = (apiClient: ApiClient, headers }, option); }, + /** PathItem レベルのパスパラメータ継承 (GET) */ + getNodeProxyWithPath: (params: Params$getNodeProxyWithPath, option?: RequestOption): Promise => { + const url = _baseUrl + \`/nodes/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const headers = { + Accept: "application/json" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + }, + /** PathItem レベルのパスパラメータ継承 (HEAD) */ + headNodeProxyWithPath: (params: Params$headNodeProxyWithPath, option?: RequestOption): Promise => { + const url = _baseUrl + \`/nodes/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const headers = {}; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return apiClient.request({ + httpMethod: "HEAD", + url, + headers, + queryParameters: queryParameters + }, option); + }, /** 複数のパスパラメータで required を省略したケース */ getUserPost: (params: Params$getUserPost, option?: RequestOption): Promise => { const url = _baseUrl + \`/users/\${encodeURIComponent(params.parameter.userId)}/posts/\${encodeURIComponent(params.parameter.postId)}\`; diff --git a/test/path-parameter/index.yml b/test/path-parameter/index.yml index 2aec7f1..82cd432 100644 --- a/test/path-parameter/index.yml +++ b/test/path-parameter/index.yml @@ -30,6 +30,41 @@ paths: name: type: string + # Kubernetes の /api/v1/nodes/{name}/proxy/{path} に相当するパターン: + # - パスパラメータを PathItem レベルで定義 (required を省略) + # - パスパラメータと同名のクエリパラメータ (path) を持つ + # - GET / HEAD の両オペレーションが PathItem パラメータを継承 (operation レベルに parameters を持たない) + /nodes/{name}/proxy/{path}: + parameters: + - in: path + name: name + schema: + type: string + - in: path + name: path + schema: + type: string + - in: query + name: path + schema: + type: string + get: + operationId: getNodeProxyWithPath + summary: PathItem レベルのパスパラメータ継承 (GET) + responses: + "200": + description: OK + content: + application/json: + schema: + type: string + head: + operationId: headNodeProxyWithPath + summary: PathItem レベルのパスパラメータ継承 (HEAD) + responses: + "200": + description: OK + /users/{userId}/posts/{postId}: get: operationId: getUserPost From 0a26e174ba901f07d0f2a326cc929d1fc7648766 Mon Sep 17 00:00:00 2001 From: "K.Himeno" <6715229+Himenon@users.noreply.github.com> Date: Wed, 27 May 2026 08:22:22 +0900 Subject: [PATCH 2/4] fix: path parameters always win over same-named query parameters in generated TypeScript interfaces When a PathItem defines both a path parameter and a query parameter with the same name (e.g. Kubernetes /api/v1/nodes/{name}/proxy/{path}), the previous implementation used the parameter name alone as the deduplication key in generatePropertySignatures. This caused the optional query parameter to overwrite the required path parameter, producing `path?: string` instead of the correct `path: string`. Fix: sort parameters before reducing so that path parameters are processed last. Since they win in the final reduce assignment, their required status is always preserved in the generated TypeScript interface. Co-Authored-By: Claude Sonnet 4.6 --- .../OpenApiTools/components/Parameter.ts | 11 +- .../__snapshots__/cloudflare-test.ts.snap | 362 +- .../__snapshots__/kubernetes-test.ts.snap | 3664 ++++++++--------- .../__snapshots__/spit-code-test.ts.snap | 2 +- .../typedef-with-template-test.ts.snap | 10 +- .../__snapshots__/coudflare-test.ts.snap | 362 +- .../__snapshots__/coudflare-test.ts.snap | 362 +- .../__snapshots__/kubernetes-test.ts.snap | 3664 ++++++++--------- .../__snapshots__/spit-code-test.ts.snap | 2 +- .../typedef-with-template-test.ts.snap | 10 +- 10 files changed, 4229 insertions(+), 4220 deletions(-) diff --git a/src/internal/OpenApiTools/components/Parameter.ts b/src/internal/OpenApiTools/components/Parameter.ts index b27c629..51e7609 100644 --- a/src/internal/OpenApiTools/components/Parameter.ts +++ b/src/internal/OpenApiTools/components/Parameter.ts @@ -109,7 +109,16 @@ export const generatePropertySignatures = ( context: ToTypeNode.Context, converterContext: ConverterContext.Types, ): string[] => { - const typeElementMap = parameters.reduce>((all, parameter) => { + // Path parameters must be processed last so they win over same-named query/header + // parameters when building the TypeScript interface (path params are always required). + const sorted = [...parameters].sort((a, b): number => { + const aIsPath = !Guard.isReference(a) && a.in === "path"; + const bIsPath = !Guard.isReference(b) && b.in === "path"; + if (aIsPath && !bIsPath) return 1; + if (!aIsPath && bIsPath) return -1; + return 0; + }); + const typeElementMap = sorted.reduce>((all, parameter) => { const { name, typeElement } = generatePropertySignatureObject( entryPoint, currentPoint, diff --git a/test/__tests__/class/__snapshots__/cloudflare-test.ts.snap b/test/__tests__/class/__snapshots__/cloudflare-test.ts.snap index 7634c57..c42523b 100644 --- a/test/__tests__/class/__snapshots__/cloudflare-test.ts.snap +++ b/test/__tests__/class/__snapshots__/cloudflare-test.ts.snap @@ -19033,11 +19033,11 @@ export interface Response$notification$webhooks$delete$a$webhook$Status$4XX { "application/json": Schemas.w2PBr26F_api$response$collection & Schemas.w2PBr26F_api$response$common$failure; } export interface Parameter$notification$history$list$history { - account_id: Schemas.w2PBr26F_account$id; per_page?: Schemas.w2PBr26F_per_page; before?: Schemas.w2PBr26F_before; page?: number; since?: Date; + account_id: Schemas.w2PBr26F_account$id; } export interface Response$notification$history$list$history$Status$200 { "application/json": Schemas.w2PBr26F_history_components$schemas$response_collection; @@ -19126,9 +19126,9 @@ export interface Response$phishing$url$scanner$submit$suspicious$url$for$scannin "application/json": Schemas.intel_phishing$url$submit_components$schemas$single_response & Schemas.intel_api$response$common$failure; } export interface Parameter$phishing$url$information$get$results$for$a$url$scan { - account_id: Schemas.intel_identifier; url_id_param?: Schemas.intel_url_id_param; url?: string; + account_id: Schemas.intel_identifier; } export interface Response$phishing$url$information$get$results$for$a$url$scan$Status$200 { "application/json": Schemas.intel_phishing$url$info_components$schemas$single_response; @@ -19137,7 +19137,6 @@ export interface Response$phishing$url$information$get$results$for$a$url$scan$St "application/json": Schemas.intel_phishing$url$info_components$schemas$single_response & Schemas.intel_api$response$common$failure; } export interface Parameter$cloudflare$tunnel$list$cloudflare$tunnels { - account_id: Schemas.tunnel_cf_account_id; name?: string; is_deleted?: boolean; existed_at?: Schemas.tunnel_existed_at; @@ -19148,6 +19147,7 @@ export interface Parameter$cloudflare$tunnel$list$cloudflare$tunnels { exclude_prefix?: string; per_page?: Schemas.tunnel_per_page; page?: number; + account_id: Schemas.tunnel_cf_account_id; } export interface Response$cloudflare$tunnel$list$cloudflare$tunnels$Status$200 { "application/json": Schemas.tunnel_tunnel$response$collection; @@ -19246,9 +19246,9 @@ export interface Response$cloudflare$tunnel$list$cloudflare$tunnel$connections$S "application/json": Schemas.tunnel_tunnel_connections_response & Schemas.tunnel_api$response$common$failure; } export interface Parameter$cloudflare$tunnel$clean$up$cloudflare$tunnel$connections { + client_id?: string; account_id: Schemas.tunnel_cf_account_id; tunnel_id: Schemas.tunnel_tunnel_id; - client_id?: string; } export interface RequestBody$cloudflare$tunnel$clean$up$cloudflare$tunnel$connections { "application/json": {}; @@ -19345,10 +19345,10 @@ export interface Response$account$level$custom$nameservers$verify$account$custom "application/json": Schemas.dns$custom$nameservers_acns_response_collection & Schemas.dns$custom$nameservers_api$response$common$failure; } export interface Parameter$cloudflare$d1$list$databases { - account_id: Schemas.d1_account$identifier; name?: string; page?: number; per_page?: number; + account_id: Schemas.d1_account$identifier; } export interface Response$cloudflare$d1$list$databases$Status$200 { "application/json": Schemas.d1_api$response$common & { @@ -19379,14 +19379,14 @@ export interface Response$cloudflare$d1$create$database$Status$4XX { }) & Schemas.d1_api$response$common$failure; } export interface Parameter$dex$endpoints$list$colos { - /** unique identifier linked to an account in the API request path. */ - account_id: Schemas.digital$experience$monitoring_account_identifier; /** Start time for connection period in RFC3339 (ISO 8601) format. */ timeStart: string; /** End time for connection period in RFC3339 (ISO 8601) format. */ timeEnd: string; /** Type of usage that colos should be sorted by. If unspecified, returns all Cloudflare colos sorted alphabetically. */ sortBy?: "fleet-status-usage" | "application-tests-usage"; + /** unique identifier linked to an account in the API request path. */ + account_id: Schemas.digital$experience$monitoring_account_identifier; } export interface Response$dex$endpoints$list$colos$Status$200 { "application/json": Schemas.digital$experience$monitoring_api$response$collection & { @@ -19397,7 +19397,6 @@ export interface Response$dex$endpoints$list$colos$Status$4XX { "application/json": Schemas.digital$experience$monitoring_api$response$common$failure; } export interface Parameter$dex$fleet$status$devices { - account_id: Schemas.digital$experience$monitoring_account_identifier; time_end: Schemas.digital$experience$monitoring_timestamp; time_start: Schemas.digital$experience$monitoring_timestamp; page: Schemas.digital$experience$monitoring_page; @@ -19409,6 +19408,7 @@ export interface Parameter$dex$fleet$status$devices { status?: Schemas.digital$experience$monitoring_status; platform?: Schemas.digital$experience$monitoring_platform; version?: Schemas.digital$experience$monitoring_version; + account_id: Schemas.digital$experience$monitoring_account_identifier; } export interface Response$dex$fleet$status$devices$Status$200 { "application/json": Schemas.digital$experience$monitoring_fleet_status_devices_response; @@ -19417,8 +19417,8 @@ export interface Response$dex$fleet$status$devices$Status$4xx { "application/json": Schemas.digital$experience$monitoring_api$response$single & Schemas.digital$experience$monitoring_api$response$common$failure; } export interface Parameter$dex$fleet$status$live { - account_id: Schemas.digital$experience$monitoring_account_identifier; since_minutes: Schemas.digital$experience$monitoring_since_minutes; + account_id: Schemas.digital$experience$monitoring_account_identifier; } export interface Response$dex$fleet$status$live$Status$200 { "application/json": Schemas.digital$experience$monitoring_fleet_status_live_response; @@ -19427,20 +19427,16 @@ export interface Response$dex$fleet$status$live$Status$4xx { "application/json": Schemas.digital$experience$monitoring_api$response$single & Schemas.digital$experience$monitoring_api$response$common$failure; } export interface Parameter$dex$fleet$status$over$time { - account_id: Schemas.digital$experience$monitoring_account_identifier; time_end: Schemas.digital$experience$monitoring_timestamp; time_start: Schemas.digital$experience$monitoring_timestamp; colo?: Schemas.digital$experience$monitoring_colo; device_id?: Schemas.digital$experience$monitoring_device_id; + account_id: Schemas.digital$experience$monitoring_account_identifier; } export interface Response$dex$fleet$status$over$time$Status$4xx { "application/json": Schemas.digital$experience$monitoring_api$response$single & Schemas.digital$experience$monitoring_api$response$common$failure; } export interface Parameter$dex$endpoints$http$test$details { - /** unique identifier linked to an account in the API request path. */ - account_id: Schemas.digital$experience$monitoring_account_identifier; - /** unique identifier for a specific test */ - test_id: Schemas.digital$experience$monitoring_uuid; /** Optionally filter result stats to a specific device(s). Cannot be used in combination with colo param. */ deviceId?: string[]; /** Start time for aggregate metrics in ISO ms */ @@ -19451,6 +19447,10 @@ export interface Parameter$dex$endpoints$http$test$details { interval: "minute" | "hour"; /** Optionally filter result stats to a Cloudflare colo. Cannot be used in combination with deviceId param. */ colo?: string; + /** unique identifier linked to an account in the API request path. */ + account_id: Schemas.digital$experience$monitoring_account_identifier; + /** unique identifier for a specific test */ + test_id: Schemas.digital$experience$monitoring_uuid; } export interface Response$dex$endpoints$http$test$details$Status$200 { "application/json": Schemas.digital$experience$monitoring_api$response$single & { @@ -19461,10 +19461,6 @@ export interface Response$dex$endpoints$http$test$details$Status$4XX { "application/json": Schemas.digital$experience$monitoring_api$response$common$failure; } export interface Parameter$dex$endpoints$http$test$percentiles { - /** unique identifier linked to an account in the API request path. */ - account_id: Schemas.digital$experience$monitoring_account_identifier; - /** unique identifier for a specific test */ - test_id: Schemas.digital$experience$monitoring_uuid; /** Optionally filter result stats to a specific device(s). Cannot be used in combination with colo param. */ deviceId?: string[]; /** Start time for aggregate metrics in ISO format */ @@ -19473,6 +19469,10 @@ export interface Parameter$dex$endpoints$http$test$percentiles { timeEnd: string; /** Optionally filter result stats to a Cloudflare colo. Cannot be used in combination with deviceId param. */ colo?: string; + /** unique identifier linked to an account in the API request path. */ + account_id: Schemas.digital$experience$monitoring_account_identifier; + /** unique identifier for a specific test */ + test_id: Schemas.digital$experience$monitoring_uuid; } export interface Response$dex$endpoints$http$test$percentiles$Status$200 { "application/json": Schemas.digital$experience$monitoring_api$response$single & { @@ -19483,8 +19483,6 @@ export interface Response$dex$endpoints$http$test$percentiles$Status$4XX { "application/json": Schemas.digital$experience$monitoring_api$response$common$failure; } export interface Parameter$dex$endpoints$list$tests { - /** unique identifier linked to an account in the API request path. */ - account_id: Schemas.digital$experience$monitoring_account_identifier; /** Optionally filter result stats to a Cloudflare colo. Cannot be used in combination with deviceId param. */ colo?: string; /** Optionally filter results by test name */ @@ -19495,6 +19493,8 @@ export interface Parameter$dex$endpoints$list$tests { page?: number; /** Number of items per page */ per_page?: number; + /** unique identifier linked to an account in the API request path. */ + account_id: Schemas.digital$experience$monitoring_account_identifier; } export interface Response$dex$endpoints$list$tests$Status$200 { "application/json": Schemas.digital$experience$monitoring_api$response$single & { @@ -19506,12 +19506,12 @@ export interface Response$dex$endpoints$list$tests$Status$4XX { "application/json": Schemas.digital$experience$monitoring_api$response$common$failure; } export interface Parameter$dex$endpoints$tests$unique$devices { - /** unique identifier linked to an account in the API request path. */ - account_id: Schemas.digital$experience$monitoring_account_identifier; /** Optionally filter results by test name */ testName?: string; /** Optionally filter result stats to a specific device(s). Cannot be used in combination with colo param. */ deviceId?: string[]; + /** unique identifier linked to an account in the API request path. */ + account_id: Schemas.digital$experience$monitoring_account_identifier; } export interface Response$dex$endpoints$tests$unique$devices$Status$200 { "application/json": Schemas.digital$experience$monitoring_api$response$single & { @@ -19536,10 +19536,6 @@ export interface Response$dex$endpoints$traceroute$test$result$network$path$Stat "application/json": Schemas.digital$experience$monitoring_api$response$common$failure; } export interface Parameter$dex$endpoints$traceroute$test$details { - /** Unique identifier linked to an account */ - account_id: Schemas.digital$experience$monitoring_account_identifier; - /** Unique identifier for a specific test */ - test_id: Schemas.digital$experience$monitoring_uuid; /** Optionally filter result stats to a specific device(s). Cannot be used in combination with colo param. */ deviceId?: string[]; /** Start time for aggregate metrics in ISO ms */ @@ -19550,6 +19546,10 @@ export interface Parameter$dex$endpoints$traceroute$test$details { interval: "minute" | "hour"; /** Optionally filter result stats to a Cloudflare colo. Cannot be used in combination with deviceId param. */ colo?: string; + /** Unique identifier linked to an account */ + account_id: Schemas.digital$experience$monitoring_account_identifier; + /** Unique identifier for a specific test */ + test_id: Schemas.digital$experience$monitoring_uuid; } export interface Response$dex$endpoints$traceroute$test$details$Status$200 { "application/json": Schemas.digital$experience$monitoring_api$response$single & { @@ -19560,10 +19560,6 @@ export interface Response$dex$endpoints$traceroute$test$details$Status$4XX { "application/json": Schemas.digital$experience$monitoring_api$response$common$failure; } export interface Parameter$dex$endpoints$traceroute$test$network$path { - /** unique identifier linked to an account */ - account_id: Schemas.digital$experience$monitoring_account_identifier; - /** unique identifier for a specific test */ - test_id: Schemas.digital$experience$monitoring_uuid; /** Device to filter tracroute result runs to */ deviceId: string; /** Start time for aggregate metrics in ISO ms */ @@ -19572,6 +19568,10 @@ export interface Parameter$dex$endpoints$traceroute$test$network$path { timeEnd: string; /** Time interval for aggregate time slots. */ interval: "minute" | "hour"; + /** unique identifier linked to an account */ + account_id: Schemas.digital$experience$monitoring_account_identifier; + /** unique identifier for a specific test */ + test_id: Schemas.digital$experience$monitoring_uuid; } export interface Response$dex$endpoints$traceroute$test$network$path$Status$200 { "application/json": Schemas.digital$experience$monitoring_api$response$single & { @@ -19582,10 +19582,6 @@ export interface Response$dex$endpoints$traceroute$test$network$path$Status$4XX "application/json": Schemas.digital$experience$monitoring_api$response$common$failure; } export interface Parameter$dex$endpoints$traceroute$test$percentiles { - /** unique identifier linked to an account in the API request path. */ - account_id: Schemas.digital$experience$monitoring_account_identifier; - /** unique identifier for a specific test */ - test_id: Schemas.digital$experience$monitoring_uuid; /** Optionally filter result stats to a specific device(s). Cannot be used in combination with colo param. */ deviceId?: string[]; /** Start time for aggregate metrics in ISO format */ @@ -19594,6 +19590,10 @@ export interface Parameter$dex$endpoints$traceroute$test$percentiles { timeEnd: string; /** Optionally filter result stats to a Cloudflare colo. Cannot be used in combination with deviceId param. */ colo?: string; + /** unique identifier linked to an account in the API request path. */ + account_id: Schemas.digital$experience$monitoring_account_identifier; + /** unique identifier for a specific test */ + test_id: Schemas.digital$experience$monitoring_uuid; } export interface Response$dex$endpoints$traceroute$test$percentiles$Status$200 { "application/json": Schemas.digital$experience$monitoring_api$response$single & { @@ -19799,9 +19799,9 @@ export interface Response$dlp$profiles$update$predefined$profile$Status$4XX { "application/json": Schemas.dlp_predefined_profile & Schemas.dlp_api$response$common$failure; } export interface Parameter$dns$firewall$list$dns$firewall$clusters { - account_id: Schemas.dns$firewall_identifier; page?: number; per_page?: number; + account_id: Schemas.dns$firewall_identifier; } export interface Response$dns$firewall$list$dns$firewall$clusters$Status$200 { "application/json": Schemas.dns$firewall_dns_firewall_response_collection; @@ -20357,9 +20357,9 @@ export interface Response$delete$hyperdrive$Status$4XX { }) & Schemas.hyperdrive_api$response$common$failure; } export interface Parameter$cloudflare$images$list$images { - account_id: Schemas.images_account_identifier; page?: number; per_page?: number; + account_id: Schemas.images_account_identifier; } export interface Response$cloudflare$images$list$images$Status$200 { "application/json": Schemas.images_images_list_response; @@ -20495,10 +20495,10 @@ export interface Response$cloudflare$images$variants$update$a$variant$Status$4XX "application/json": Schemas.images_image_variant_simple_response & Schemas.images_api$response$common$failure; } export interface Parameter$cloudflare$images$list$images$v2 { - account_id: Schemas.images_account_identifier; continuation_token?: string | null; per_page?: number; sort_order?: "asc" | "desc"; + account_id: Schemas.images_account_identifier; } export interface Response$cloudflare$images$list$images$v2$Status$200 { "application/json": Schemas.images_images_list_response_v2; @@ -20553,11 +20553,11 @@ export interface Response$asn$intelligence$get$asn$subnets$Status$4XX { } & Schemas.intel_api$response$common$failure; } export interface Parameter$passive$dns$by$ip$get$passive$dns$by$ip { - account_id: Schemas.intel_identifier; start_end_params?: Schemas.intel_start_end_params; ipv4?: string; page?: number; per_page?: number; + account_id: Schemas.intel_identifier; } export interface Response$passive$dns$by$ip$get$passive$dns$by$ip$Status$200 { "application/json": Schemas.intel_components$schemas$single_response; @@ -20566,8 +20566,8 @@ export interface Response$passive$dns$by$ip$get$passive$dns$by$ip$Status$4XX { "application/json": Schemas.intel_components$schemas$single_response & Schemas.intel_api$response$common$failure; } export interface Parameter$domain$intelligence$get$domain$details { - account_id: Schemas.intel_identifier; domain?: string; + account_id: Schemas.intel_identifier; } export interface Response$domain$intelligence$get$domain$details$Status$200 { "application/json": Schemas.intel_single_response; @@ -20576,8 +20576,8 @@ export interface Response$domain$intelligence$get$domain$details$Status$4XX { "application/json": Schemas.intel_single_response & Schemas.intel_api$response$common$failure; } export interface Parameter$domain$history$get$domain$history { - account_id: Schemas.intel_identifier; domain?: any; + account_id: Schemas.intel_identifier; } export interface Response$domain$history$get$domain$history$Status$200 { "application/json": Schemas.intel_response; @@ -20586,8 +20586,8 @@ export interface Response$domain$history$get$domain$history$Status$4XX { "application/json": Schemas.intel_response & Schemas.intel_api$response$common$failure; } export interface Parameter$domain$intelligence$get$multiple$domain$details { - account_id: Schemas.intel_identifier; domain?: any; + account_id: Schemas.intel_identifier; } export interface Response$domain$intelligence$get$multiple$domain$details$Status$200 { "application/json": Schemas.intel_collection_response; @@ -20596,9 +20596,9 @@ export interface Response$domain$intelligence$get$multiple$domain$details$Status "application/json": Schemas.intel_collection_response & Schemas.intel_api$response$common$failure; } export interface Parameter$ip$intelligence$get$ip$overview { - account_id: Schemas.intel_identifier; ipv4?: string; ipv6?: string; + account_id: Schemas.intel_identifier; } export interface Response$ip$intelligence$get$ip$overview$Status$200 { "application/json": Schemas.intel_schemas$response; @@ -20628,8 +20628,8 @@ export interface Response$miscategorization$create$miscategorization$Status$4XX "application/json": Schemas.intel_api$response$single & Schemas.intel_api$response$common$failure; } export interface Parameter$whois$record$get$whois$record { - account_id: Schemas.intel_identifier; domain?: string; + account_id: Schemas.intel_identifier; } export interface Response$whois$record$get$whois$record$Status$200 { "application/json": Schemas.intel_schemas$single_response; @@ -21024,13 +21024,13 @@ export interface Response$pages$purge$build$cache$Status$4XX { "application/json": Schemas.pages_api$response$common$failure; } export interface Parameter$r2$list$buckets { - account_id: Schemas.r2_account_identifier; name_contains?: string; start_after?: string; per_page?: number; order?: "name"; direction?: "asc" | "desc"; cursor?: string; + account_id: Schemas.r2_account_identifier; } export interface Response$r2$list$buckets$Status$200 { "application/json": Schemas.r2_v4_response_list & { @@ -21213,11 +21213,11 @@ export interface Response$lists$delete$a$list$Status$4XX { "application/json": Schemas.lists_list$delete$response$collection & Schemas.lists_api$response$common$failure; } export interface Parameter$lists$get$list$items { - list_id: Schemas.lists_list_id; - account_id: Schemas.lists_identifier; cursor?: string; per_page?: number; search?: string; + list_id: Schemas.lists_list_id; + account_id: Schemas.lists_identifier; } export interface Response$lists$get$list$items$Status$200 { "application/json": Schemas.lists_items$list$response$collection; @@ -21471,7 +21471,6 @@ export interface Response$getAccountEntrypointRulesetVersion$Status$4XX { "application/json": Schemas.rulesets_FailureResponse; } export interface Parameter$stream$videos$list$videos { - account_id: Schemas.stream_account_identifier; status?: Schemas.stream_media_state; creator?: Schemas.stream_creator; type?: Schemas.stream_type; @@ -21480,6 +21479,7 @@ export interface Parameter$stream$videos$list$videos { start?: Schemas.stream_start; end?: Schemas.stream_end; include_counts?: Schemas.stream_include_counts; + account_id: Schemas.stream_account_identifier; } export interface Response$stream$videos$list$videos$Status$200 { "application/json": Schemas.stream_video_response_collection; @@ -21680,9 +21680,9 @@ export interface Response$stream$video$clipping$clip$videos$given$a$start$and$en "application/json": Schemas.stream_api$response$common$failure; } export interface Parameter$stream$videos$upload$videos$from$a$url { - account_id: Schemas.stream_account_identifier; "Upload-Creator"?: Schemas.stream_creator; "Upload-Metadata"?: Schemas.stream_upload_metadata; + account_id: Schemas.stream_account_identifier; } export interface RequestBody$stream$videos$upload$videos$from$a$url { "application/json": Schemas.stream_video_copy_request; @@ -21694,8 +21694,8 @@ export interface Response$stream$videos$upload$videos$from$a$url$Status$4XX { "application/json": Schemas.stream_api$response$common$failure; } export interface Parameter$stream$videos$upload$videos$via$direct$upload$ur$ls { - account_id: Schemas.stream_account_identifier; "Upload-Creator"?: Schemas.stream_creator; + account_id: Schemas.stream_account_identifier; } export interface RequestBody$stream$videos$upload$videos$via$direct$upload$ur$ls { "application/json": Schemas.stream_direct_upload_request; @@ -21735,8 +21735,8 @@ export interface Response$stream$signing$keys$delete$signing$keys$Status$4XX { "application/json": Schemas.stream_api$response$common$failure; } export interface Parameter$stream$live$inputs$list$live$inputs { - account_id: Schemas.stream_schemas$identifier; include_counts?: Schemas.stream_include_counts; + account_id: Schemas.stream_schemas$identifier; } export interface Response$stream$live$inputs$list$live$inputs$Status$200 { "application/json": Schemas.stream_live_input_response_collection; @@ -21834,8 +21834,8 @@ export interface Response$stream$live$inputs$delete$an$output$Status$200 { export interface Response$stream$live$inputs$delete$an$output$Status$4XX { } export interface Parameter$stream$videos$storage$usage { - account_id: Schemas.stream_account_identifier; creator?: Schemas.stream_creator; + account_id: Schemas.stream_account_identifier; } export interface Response$stream$videos$storage$usage$Status$200 { "application/json": Schemas.stream_storage_use_response; @@ -21917,7 +21917,6 @@ export interface Response$stream$webhook$delete$webhooks$Status$4XX { "application/json": Schemas.stream_api$response$common$failure; } export interface Parameter$tunnel$route$list$tunnel$routes { - account_id: Schemas.tunnel_cf_account_id; comment?: Schemas.tunnel_comment; is_deleted?: any; network_subset?: any; @@ -21929,6 +21928,7 @@ export interface Parameter$tunnel$route$list$tunnel$routes { virtual_network_id?: any; per_page?: Schemas.tunnel_per_page; page?: number; + account_id: Schemas.tunnel_cf_account_id; } export interface Response$tunnel$route$list$tunnel$routes$Status$200 { "application/json": Schemas.tunnel_teamnet_response_collection; @@ -21983,9 +21983,9 @@ export interface Response$tunnel$route$update$a$tunnel$route$Status$4XX { "application/json": Schemas.tunnel_route_response_single & Schemas.tunnel_api$response$common$failure; } export interface Parameter$tunnel$route$get$tunnel$route$by$ip { + virtual_network_id?: Schemas.tunnel_route_virtual_network_id; ip: Schemas.tunnel_ip; account_id: Schemas.tunnel_cf_account_id; - virtual_network_id?: Schemas.tunnel_route_virtual_network_id; } export interface Response$tunnel$route$get$tunnel$route$by$ip$Status$200 { "application/json": Schemas.tunnel_teamnet_response_single; @@ -22011,11 +22011,11 @@ export interface Response$tunnel$route$create$a$tunnel$route$with$cidr$Status$4X "application/json": Schemas.tunnel_route_response_single & Schemas.tunnel_api$response$common$failure; } export interface Parameter$tunnel$route$delete$a$tunnel$route$with$cidr { - ip_network_encoded: Schemas.tunnel_ip_network_encoded; - account_id: Schemas.tunnel_cf_account_id; virtual_network_id?: Schemas.tunnel_vnet_id; tun_type?: Schemas.tunnel_tunnel_type; tunnel_id?: Schemas.tunnel_tunnel_id; + ip_network_encoded: Schemas.tunnel_ip_network_encoded; + account_id: Schemas.tunnel_cf_account_id; } export interface Response$tunnel$route$delete$a$tunnel$route$with$cidr$Status$200 { "application/json": Schemas.tunnel_route_response_single; @@ -22034,12 +22034,12 @@ export interface Response$tunnel$route$update$a$tunnel$route$with$cidr$Status$4X "application/json": Schemas.tunnel_route_response_single & Schemas.tunnel_api$response$common$failure; } export interface Parameter$tunnel$virtual$network$list$virtual$networks { - account_id: Schemas.tunnel_cf_account_id; name?: Schemas.tunnel_vnet_name; is_default?: any; is_deleted?: any; vnet_name?: Schemas.tunnel_vnet_name; vnet_id?: string; + account_id: Schemas.tunnel_cf_account_id; } export interface Response$tunnel$virtual$network$list$virtual$networks$Status$200 { "application/json": Schemas.tunnel_vnet_response_collection; @@ -22091,7 +22091,6 @@ export interface Response$tunnel$virtual$network$update$a$virtual$network$Status "application/json": Schemas.tunnel_vnet_response_single & Schemas.tunnel_api$response$common$failure; } export interface Parameter$cloudflare$tunnel$list$all$tunnels { - account_id: Schemas.tunnel_cf_account_id; name?: string; is_deleted?: boolean; existed_at?: Schemas.tunnel_existed_at; @@ -22103,6 +22102,7 @@ export interface Parameter$cloudflare$tunnel$list$all$tunnels { tun_types?: Schemas.tunnel_tunnel_types; per_page?: Schemas.tunnel_per_page; page?: number; + account_id: Schemas.tunnel_cf_account_id; } export interface Response$cloudflare$tunnel$list$all$tunnels$Status$200 { "application/json": Schemas.tunnel_tunnel$response$collection; @@ -22163,7 +22163,6 @@ export interface Response$argo$tunnel$clean$up$argo$tunnel$connections$Status$4X "application/json": Schemas.tunnel_empty_response & Schemas.tunnel_api$response$common$failure; } export interface Parameter$cloudflare$tunnel$list$warp$connector$tunnels { - account_id: Schemas.tunnel_cf_account_id; name?: string; is_deleted?: boolean; existed_at?: Schemas.tunnel_existed_at; @@ -22174,6 +22173,7 @@ export interface Parameter$cloudflare$tunnel$list$warp$connector$tunnels { exclude_prefix?: string; per_page?: Schemas.tunnel_per_page; page?: number; + account_id: Schemas.tunnel_cf_account_id; } export interface Response$cloudflare$tunnel$list$warp$connector$tunnels$Status$200 { "application/json": Schemas.tunnel_tunnel$response$collection; @@ -22306,11 +22306,11 @@ export type RequestBody$namespace$worker$script$upload$worker$module = RequestBo export type Response$namespace$worker$script$upload$worker$module$Status$200 = Responses.workers_200.Content; export type Response$namespace$worker$script$upload$worker$module$Status$4XX = Responses.workers_4XX.Content; export interface Parameter$namespace$worker$script$delete$worker { + /** If set to true, delete will not be stopped by associated service binding, durable object, or other binding. Any of these associated bindings/durable objects will be deleted along with the script. */ + force?: boolean; account_id: Schemas.workers_identifier; dispatch_namespace: Schemas.workers_dispatch_namespace_name; script_name: Schemas.workers_script_name; - /** If set to true, delete will not be stopped by associated service binding, durable object, or other binding. Any of these associated bindings/durable objects will be deleted along with the script. */ - force?: boolean; } export interface Response$namespace$worker$script$delete$worker$Status$200 { } @@ -22328,13 +22328,13 @@ export interface Response$namespace$worker$get$script$content$Status$4XX { "application/json": Schemas.workers_api$response$common; } export interface Parameter$namespace$worker$put$script$content { - account_id: Schemas.workers_identifier; - dispatch_namespace: Schemas.workers_dispatch_namespace_name; - script_name: Schemas.workers_script_name; /** The multipart name of a script upload part containing script content in service worker format. Alternative to including in a metadata part. */ "CF-WORKER-BODY-PART"?: string; /** The multipart name of a script upload part containing script content in es module format. Alternative to including in a metadata part. */ "CF-WORKER-MAIN-MODULE-PART"?: string; + account_id: Schemas.workers_identifier; + dispatch_namespace: Schemas.workers_dispatch_namespace_name; + script_name: Schemas.workers_script_name; } export interface RequestBody$namespace$worker$put$script$content { "multipart/form-data": { @@ -22381,12 +22381,12 @@ export interface Response$namespace$worker$patch$script$settings$Status$4XX { "application/json": Schemas.workers_api$response$common; } export interface Parameter$worker$domain$list$domains { - account_id: Schemas.workers_account_identifier; zone_name?: Schemas.workers_zone_name; service?: Schemas.workers_schemas$service; zone_id?: Schemas.workers_zone_identifier; hostname?: string; environment?: string; + account_id: Schemas.workers_account_identifier; } export interface Response$worker$domain$list$domains$Status$200 { "application/json": Schemas.workers_domain$response$collection; @@ -22443,10 +22443,10 @@ export interface Response$durable$objects$namespace$list$namespaces$Status$4XX { }) & Schemas.workers_api$response$common$failure; } export interface Parameter$durable$objects$namespace$list$objects { - id: Schemas.workers_schemas$id; - account_id: Schemas.workers_identifier; limit?: number; cursor?: string; + id: Schemas.workers_schemas$id; + account_id: Schemas.workers_identifier; } export interface Response$durable$objects$namespace$list$objects$Status$200 { "application/json": Schemas.workers_api$response$collection & { @@ -22674,10 +22674,10 @@ export interface Response$worker$script$download$worker$Status$4XX { undefined: any; } export interface Parameter$worker$script$upload$worker$module { - script_name: Schemas.workers_script_name; - account_id: Schemas.workers_identifier; /** Rollback to provided deployment based on deployment ID. Request body will only parse a "message" part. You can learn more about deployments [here](https://developers.cloudflare.com/workers/platform/deployments/). */ rollback_to?: Schemas.workers_uuid; + script_name: Schemas.workers_script_name; + account_id: Schemas.workers_identifier; } export type RequestBody$worker$script$upload$worker$module = RequestBodies.workers_script_upload.Content; export interface Response$worker$script$upload$worker$module$Status$200 { @@ -22687,22 +22687,22 @@ export interface Response$worker$script$upload$worker$module$Status$4XX { "application/json": any & Schemas.workers_api$response$common$failure; } export interface Parameter$worker$script$delete$worker { - script_name: Schemas.workers_script_name; - account_id: Schemas.workers_identifier; /** If set to true, delete will not be stopped by associated service binding, durable object, or other binding. Any of these associated bindings/durable objects will be deleted along with the script. */ force?: boolean; + script_name: Schemas.workers_script_name; + account_id: Schemas.workers_identifier; } export interface Response$worker$script$delete$worker$Status$200 { } export interface Response$worker$script$delete$worker$Status$4XX { } export interface Parameter$worker$script$put$content { - account_id: Schemas.workers_identifier; - script_name: Schemas.workers_script_name; /** The multipart name of a script upload part containing script content in service worker format. Alternative to including in a metadata part. */ "CF-WORKER-BODY-PART"?: string; /** The multipart name of a script upload part containing script content in es module format. Alternative to including in a metadata part. */ "CF-WORKER-MAIN-MODULE-PART"?: string; + account_id: Schemas.workers_identifier; + script_name: Schemas.workers_script_name; } export interface RequestBody$worker$script$put$content { "multipart/form-data": { @@ -22847,13 +22847,13 @@ export interface Response$worker$environment$get$script$content$Status$4XX { "application/json": Schemas.workers_api$response$common$failure; } export interface Parameter$worker$environment$put$script$content { - account_id: Schemas.workers_identifier; - service_name: Schemas.workers_service; - environment_name: Schemas.workers_environment; /** The multipart name of a script upload part containing script content in service worker format. Alternative to including in a metadata part. */ "CF-WORKER-BODY-PART"?: string; /** The multipart name of a script upload part containing script content in es module format. Alternative to including in a metadata part. */ "CF-WORKER-MAIN-MODULE-PART"?: string; + account_id: Schemas.workers_identifier; + service_name: Schemas.workers_service; + environment_name: Schemas.workers_environment; } export interface RequestBody$worker$environment$put$script$content { "multipart/form-data": { @@ -23324,7 +23324,6 @@ export interface Response$workers$ai$post$run$model$Status$400 { }; } export interface Parameter$audit$logs$get$account$audit$logs { - account_identifier: Schemas.w2PBr26F_identifier; id?: string; export?: boolean; "action.type"?: string; @@ -23337,6 +23336,7 @@ export interface Parameter$audit$logs$get$account$audit$logs { per_page?: number; page?: number; hide_user_logs?: boolean; + account_identifier: Schemas.w2PBr26F_identifier; } export interface Response$audit$logs$get$account$audit$logs$Status$200 { "application/json": Schemas.w2PBr26F_audit_logs_response_collection; @@ -23354,11 +23354,11 @@ export interface Response$account$billing$profile$$$deprecated$$billing$profile$ "application/json": Schemas.bill$subs$api_billing_response_single & Schemas.bill$subs$api_api$response$common$failure; } export interface Parameter$accounts$turnstile$widgets$list { - account_identifier: Schemas.grwMffPV_identifier; page?: number; per_page?: number; order?: "id" | "sitekey" | "name" | "created_on" | "modified_on"; direction?: "asc" | "desc"; + account_identifier: Schemas.grwMffPV_identifier; } export interface Response$accounts$turnstile$widgets$list$Status$200 { "application/json": Schemas.grwMffPV_api$response$common & { @@ -23371,11 +23371,11 @@ export interface Response$accounts$turnstile$widgets$list$Status$4XX { "application/json": Schemas.grwMffPV_api$response$common$failure; } export interface Parameter$accounts$turnstile$widget$create { - account_identifier: Schemas.grwMffPV_identifier; page?: number; per_page?: number; order?: "id" | "sitekey" | "name" | "created_on" | "modified_on"; direction?: "asc" | "desc"; + account_identifier: Schemas.grwMffPV_identifier; } export interface RequestBody$accounts$turnstile$widget$create { "application/json": { @@ -23561,8 +23561,6 @@ export interface Response$diagnostics$traceroute$Status$4XX { "application/json": Schemas.aMMS9DAQ_traceroute_response_collection & Schemas.aMMS9DAQ_api$response$common$failure; } export interface Parameter$dns$firewall$analytics$table { - identifier: Schemas.erIwb89A_identifier; - account_identifier: Schemas.erIwb89A_identifier; metrics?: Schemas.erIwb89A_metrics; dimensions?: Schemas.erIwb89A_dimensions; since?: Schemas.erIwb89A_since; @@ -23570,6 +23568,8 @@ export interface Parameter$dns$firewall$analytics$table { limit?: Schemas.erIwb89A_limit; sort?: Schemas.erIwb89A_sort; filters?: Schemas.erIwb89A_filters; + identifier: Schemas.erIwb89A_identifier; + account_identifier: Schemas.erIwb89A_identifier; } export interface Response$dns$firewall$analytics$table$Status$200 { "application/json": Schemas.erIwb89A_api$response$single & { @@ -23582,8 +23582,6 @@ export interface Response$dns$firewall$analytics$table$Status$4XX { }) & Schemas.erIwb89A_api$response$common$failure; } export interface Parameter$dns$firewall$analytics$by$time { - identifier: Schemas.erIwb89A_identifier; - account_identifier: Schemas.erIwb89A_identifier; metrics?: Schemas.erIwb89A_metrics; dimensions?: Schemas.erIwb89A_dimensions; since?: Schemas.erIwb89A_since; @@ -23592,6 +23590,8 @@ export interface Parameter$dns$firewall$analytics$by$time { sort?: Schemas.erIwb89A_sort; filters?: Schemas.erIwb89A_filters; time_delta?: Schemas.erIwb89A_time_delta; + identifier: Schemas.erIwb89A_identifier; + account_identifier: Schemas.erIwb89A_identifier; } export interface Response$dns$firewall$analytics$by$time$Status$200 { "application/json": Schemas.erIwb89A_api$response$single & { @@ -23604,11 +23604,11 @@ export interface Response$dns$firewall$analytics$by$time$Status$4XX { }) & Schemas.erIwb89A_api$response$common$failure; } export interface Parameter$email$routing$destination$addresses$list$destination$addresses { - account_identifier: Schemas.email_identifier; page?: number; per_page?: number; direction?: "asc" | "desc"; verified?: true | false; + account_identifier: Schemas.email_identifier; } export interface Response$email$routing$destination$addresses$list$destination$addresses$Status$200 { "application/json": Schemas.email_destination_addresses_response_collection; @@ -23637,13 +23637,13 @@ export interface Response$email$routing$destination$addresses$delete$destination "application/json": Schemas.email_destination_address_response_single; } export interface Parameter$ip$access$rules$for$an$account$list$ip$access$rules { - account_identifier: Schemas.legacy$jhs_account_identifier; filters?: Schemas.legacy$jhs_schemas$filters; "egs-pagination.json"?: Schemas.legacy$jhs_egs$pagination; page?: number; per_page?: number; order?: "configuration.target" | "configuration.value" | "mode"; direction?: "asc" | "desc"; + account_identifier: Schemas.legacy$jhs_account_identifier; } export interface Response$ip$access$rules$for$an$account$list$ip$access$rules$Status$200 { "application/json": Schemas.legacy$jhs_response_collection; @@ -23895,8 +23895,8 @@ export interface Response$account$load$balancer$monitors$list$monitor$references "application/json": Schemas.load$balancing_references_response & Schemas.load$balancing_api$response$common$failure; } export interface Parameter$account$load$balancer$pools$list$pools { - account_identifier: Schemas.load$balancing_components$schemas$identifier; monitor?: any; + account_identifier: Schemas.load$balancing_components$schemas$identifier; } export interface Response$account$load$balancer$pools$list$pools$Status$200 { "application/json": Schemas.load$balancing_schemas$response_collection; @@ -24065,10 +24065,10 @@ export interface Response$account$load$balancer$monitors$preview$result$Status$4 "application/json": Schemas.load$balancing_preview_result_response & Schemas.load$balancing_api$response$common$failure; } export interface Parameter$load$balancer$regions$list$regions { - account_identifier: Schemas.load$balancing_components$schemas$identifier; subdivision_code?: Schemas.load$balancing_subdivision_code_a2; subdivision_code_a2?: Schemas.load$balancing_subdivision_code_a2; country_code_a2?: string; + account_identifier: Schemas.load$balancing_components$schemas$identifier; } export interface Response$load$balancer$regions$list$regions$Status$200 { "application/json": Schemas.load$balancing_region_components$schemas$response_collection; @@ -24087,10 +24087,10 @@ export interface Response$load$balancer$regions$get$region$Status$4XX { "application/json": Schemas.load$balancing_components$schemas$single_response & Schemas.load$balancing_api$response$common$failure; } export interface Parameter$account$load$balancer$search$search$resources { - account_identifier: Schemas.load$balancing_components$schemas$identifier; search_params?: Schemas.load$balancing_search_params; page?: any; per_page?: any; + account_identifier: Schemas.load$balancing_components$schemas$identifier; } export interface Response$account$load$balancer$search$search$resources$Status$200 { "application/json": Schemas.load$balancing_api$response$collection & Schemas.load$balancing_search_result; @@ -24378,12 +24378,12 @@ export interface Response$magic$static$routes$delete$route$Status$4XX { "application/json": Schemas.magic_route_deleted_response & Schemas.magic_api$response$common$failure; } export interface Parameter$account$members$list$members { - account_identifier: Schemas.mrUXABdt_account_identifier; order?: "user.first_name" | "user.last_name" | "user.email" | "status"; status?: "accepted" | "pending" | "rejected"; page?: number; per_page?: number; direction?: "asc" | "desc"; + account_identifier: Schemas.mrUXABdt_account_identifier; } export interface Response$account$members$list$members$Status$200 { "application/json": Schemas.mrUXABdt_collection_member_response; @@ -24839,10 +24839,10 @@ export interface Response$web$analytics$delete$site$Status$4XX { "application/json": Schemas.X3uh9Izk_api$response$common$failure; } export interface Parameter$web$analytics$list$sites { - account_identifier: Schemas.X3uh9Izk_identifier; per_page?: Schemas.X3uh9Izk_per_page; page?: Schemas.X3uh9Izk_page; order_by?: Schemas.X3uh9Izk_order_by; + account_identifier: Schemas.X3uh9Izk_identifier; } export interface Response$web$analytics$list$sites$Status$200 { "application/json": Schemas.X3uh9Izk_sites$response$collection; @@ -25079,13 +25079,13 @@ export interface Response$secondary$dns$$$tsig$$delete$tsig$Status$4XX { "application/json": Schemas.vusJxt3o_schemas$id_response & Schemas.vusJxt3o_api$response$common$failure; } export interface Parameter$workers$kv$request$analytics$query$request$analytics { - account_identifier: Schemas.workers$kv_identifier; query?: Schemas.workers$kv_query & { dimensions?: ("accountId" | "responseCode" | "requestType")[]; filters?: any; metrics?: ("requests" | "writeKiB" | "readKiB")[]; sort?: any; }; + account_identifier: Schemas.workers$kv_identifier; } export interface Response$workers$kv$request$analytics$query$request$analytics$Status$200 { "application/json": Schemas.workers$kv_api$response$single & { @@ -25098,13 +25098,13 @@ export interface Response$workers$kv$request$analytics$query$request$analytics$S }) & Schemas.workers$kv_api$response$common$failure; } export interface Parameter$workers$kv$stored$data$analytics$query$stored$data$analytics { - account_identifier: Schemas.workers$kv_identifier; query?: Schemas.workers$kv_query & { dimensions?: ("namespaceId")[]; filters?: any; metrics?: ("storedBytes" | "storedKeys")[]; sort?: any; }; + account_identifier: Schemas.workers$kv_identifier; } export interface Response$workers$kv$stored$data$analytics$query$stored$data$analytics$Status$200 { "application/json": Schemas.workers$kv_api$response$single & { @@ -25117,11 +25117,11 @@ export interface Response$workers$kv$stored$data$analytics$query$stored$data$ana }) & Schemas.workers$kv_api$response$common$failure; } export interface Parameter$workers$kv$namespace$list$namespaces { - account_identifier: Schemas.workers$kv_identifier; page?: number; per_page?: number; order?: "id" | "title"; direction?: "asc" | "desc"; + account_identifier: Schemas.workers$kv_identifier; } export interface Response$workers$kv$namespace$list$namespaces$Status$200 { "application/json": Schemas.workers$kv_api$response$collection & { @@ -25199,11 +25199,11 @@ export interface Response$workers$kv$namespace$delete$multiple$key$value$pairs$S "application/json": Schemas.workers$kv_api$response$single & Schemas.workers$kv_api$response$common$failure; } export interface Parameter$workers$kv$namespace$list$a$namespace$$s$keys { - namespace_identifier: Schemas.workers$kv_namespace_identifier; - account_identifier: Schemas.workers$kv_identifier; limit?: number; prefix?: string; cursor?: string; + namespace_identifier: Schemas.workers$kv_namespace_identifier; + account_identifier: Schemas.workers$kv_identifier; } export interface Response$workers$kv$namespace$list$a$namespace$$s$keys$Status$200 { "application/json": Schemas.workers$kv_api$response$common & { @@ -25515,7 +25515,6 @@ export interface Response$ip$address$management$address$maps$remove$an$account$m "application/json": Schemas.addressing_api$response$collection & Schemas.addressing_api$response$common$failure; } export interface Parameter$urlscanner$search$scans { - accountId: string; scanId?: string; limit?: number; next_cursor?: string; @@ -25528,6 +25527,7 @@ export interface Parameter$urlscanner$search$scans { page_hostname?: string; page_path?: string; account_scans?: boolean; + accountId: string; } export interface Response$urlscanner$search$scans$Status$200 { "application/json": { @@ -26133,9 +26133,9 @@ export interface Response$urlscanner$get$scan$har$Status$404 { }; } export interface Parameter$urlscanner$get$scan$screenshot { + resolution?: "desktop" | "mobile" | "tablet"; scanId: string; accountId: string; - resolution?: "desktop" | "mobile" | "tablet"; } export interface Response$urlscanner$get$scan$screenshot$Status$200 { /** PNG Image */ @@ -27739,7 +27739,6 @@ export interface Response$organizations$$$deprecated$$edit$organization$Status$4 "application/json": Schemas.mrUXABdt_single_organization_response & Schemas.mrUXABdt_api$response$common$failure; } export interface Parameter$audit$logs$get$organization$audit$logs { - organization_identifier: Schemas.w2PBr26F_identifier; id?: string; export?: boolean; "action.type"?: string; @@ -27752,6 +27751,7 @@ export interface Parameter$audit$logs$get$organization$audit$logs { per_page?: number; page?: number; hide_user_logs?: boolean; + organization_identifier: Schemas.w2PBr26F_identifier; } export interface Response$audit$logs$get$organization$audit$logs$Status$200 { "application/json": Schemas.w2PBr26F_audit_logs_response_collection; @@ -28580,7 +28580,6 @@ export interface Response$radar$get$dns$as112$top$locations$Status$404 { }; } export interface Parameter$radar$get$dns$as112$top$locations$by$dnssec { - dnssec: "SUPPORTED" | "NOT_SUPPORTED"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -28589,6 +28588,7 @@ export interface Parameter$radar$get$dns$as112$top$locations$by$dnssec { asn?: string[]; location?: string[]; format?: "JSON" | "CSV"; + dnssec: "SUPPORTED" | "NOT_SUPPORTED"; } export interface Response$radar$get$dns$as112$top$locations$by$dnssec$Status$200 { "application/json": { @@ -28629,7 +28629,6 @@ export interface Response$radar$get$dns$as112$top$locations$by$dnssec$Status$404 }; } export interface Parameter$radar$get$dns$as112$top$locations$by$edns { - edns: "SUPPORTED" | "NOT_SUPPORTED"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -28638,6 +28637,7 @@ export interface Parameter$radar$get$dns$as112$top$locations$by$edns { asn?: string[]; location?: string[]; format?: "JSON" | "CSV"; + edns: "SUPPORTED" | "NOT_SUPPORTED"; } export interface Response$radar$get$dns$as112$top$locations$by$edns$Status$200 { "application/json": { @@ -28678,7 +28678,6 @@ export interface Response$radar$get$dns$as112$top$locations$by$edns$Status$404 { }; } export interface Parameter$radar$get$dns$as112$top$locations$by$ip$version { - ip_version: "IPv4" | "IPv6"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -28687,6 +28686,7 @@ export interface Parameter$radar$get$dns$as112$top$locations$by$ip$version { asn?: string[]; location?: string[]; format?: "JSON" | "CSV"; + ip_version: "IPv4" | "IPv6"; } export interface Response$radar$get$dns$as112$top$locations$by$ip$version$Status$200 { "application/json": { @@ -31156,8 +31156,8 @@ export interface Response$radar$get$reports$datasets$Status$400 { }; } export interface Parameter$radar$get$reports$dataset$download { - alias: string; date?: string | null; + alias: string; } export interface Response$radar$get$reports$dataset$download$Status$200 { "text/csv": string; @@ -31981,7 +31981,6 @@ export interface Response$radar$get$email$security$top$ases$by$messages$Status$4 }; } export interface Parameter$radar$get$email$security$top$ases$by$arc { - arc: "PASS" | "NONE" | "FAIL"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -31993,6 +31992,7 @@ export interface Parameter$radar$get$email$security$top$ases$by$arc { dmarc?: ("PASS" | "NONE" | "FAIL")[]; spf?: ("PASS" | "NONE" | "FAIL")[]; format?: "JSON" | "CSV"; + arc: "PASS" | "NONE" | "FAIL"; } export interface Response$radar$get$email$security$top$ases$by$arc$Status$200 { "application/json": { @@ -32033,7 +32033,6 @@ export interface Response$radar$get$email$security$top$ases$by$arc$Status$404 { }; } export interface Parameter$radar$get$email$security$top$ases$by$dkim { - dkim: "PASS" | "NONE" | "FAIL"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -32045,6 +32044,7 @@ export interface Parameter$radar$get$email$security$top$ases$by$dkim { dmarc?: ("PASS" | "NONE" | "FAIL")[]; spf?: ("PASS" | "NONE" | "FAIL")[]; format?: "JSON" | "CSV"; + dkim: "PASS" | "NONE" | "FAIL"; } export interface Response$radar$get$email$security$top$ases$by$dkim$Status$200 { "application/json": { @@ -32085,7 +32085,6 @@ export interface Response$radar$get$email$security$top$ases$by$dkim$Status$404 { }; } export interface Parameter$radar$get$email$security$top$ases$by$dmarc { - dmarc: "PASS" | "NONE" | "FAIL"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -32097,6 +32096,7 @@ export interface Parameter$radar$get$email$security$top$ases$by$dmarc { dkim?: ("PASS" | "NONE" | "FAIL")[]; spf?: ("PASS" | "NONE" | "FAIL")[]; format?: "JSON" | "CSV"; + dmarc: "PASS" | "NONE" | "FAIL"; } export interface Response$radar$get$email$security$top$ases$by$dmarc$Status$200 { "application/json": { @@ -32137,7 +32137,6 @@ export interface Response$radar$get$email$security$top$ases$by$dmarc$Status$404 }; } export interface Parameter$radar$get$email$security$top$ases$by$malicious { - malicious: "MALICIOUS" | "NOT_MALICIOUS"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -32150,6 +32149,7 @@ export interface Parameter$radar$get$email$security$top$ases$by$malicious { dmarc?: ("PASS" | "NONE" | "FAIL")[]; spf?: ("PASS" | "NONE" | "FAIL")[]; format?: "JSON" | "CSV"; + malicious: "MALICIOUS" | "NOT_MALICIOUS"; } export interface Response$radar$get$email$security$top$ases$by$malicious$Status$200 { "application/json": { @@ -32190,7 +32190,6 @@ export interface Response$radar$get$email$security$top$ases$by$malicious$Status$ }; } export interface Parameter$radar$get$email$security$top$ases$by$spam { - spam: "SPAM" | "NOT_SPAM"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -32203,6 +32202,7 @@ export interface Parameter$radar$get$email$security$top$ases$by$spam { dmarc?: ("PASS" | "NONE" | "FAIL")[]; spf?: ("PASS" | "NONE" | "FAIL")[]; format?: "JSON" | "CSV"; + spam: "SPAM" | "NOT_SPAM"; } export interface Response$radar$get$email$security$top$ases$by$spam$Status$200 { "application/json": { @@ -32243,7 +32243,6 @@ export interface Response$radar$get$email$security$top$ases$by$spam$Status$404 { }; } export interface Parameter$radar$get$email$security$top$ases$by$spf { - spf: "PASS" | "NONE" | "FAIL"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -32255,6 +32254,7 @@ export interface Parameter$radar$get$email$security$top$ases$by$spf { dkim?: ("PASS" | "NONE" | "FAIL")[]; dmarc?: ("PASS" | "NONE" | "FAIL")[]; format?: "JSON" | "CSV"; + spf: "PASS" | "NONE" | "FAIL"; } export interface Response$radar$get$email$security$top$ases$by$spf$Status$200 { "application/json": { @@ -32347,7 +32347,6 @@ export interface Response$radar$get$email$security$top$locations$by$messages$Sta }; } export interface Parameter$radar$get$email$security$top$locations$by$arc { - arc: "PASS" | "NONE" | "FAIL"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -32359,6 +32358,7 @@ export interface Parameter$radar$get$email$security$top$locations$by$arc { dmarc?: ("PASS" | "NONE" | "FAIL")[]; spf?: ("PASS" | "NONE" | "FAIL")[]; format?: "JSON" | "CSV"; + arc: "PASS" | "NONE" | "FAIL"; } export interface Response$radar$get$email$security$top$locations$by$arc$Status$200 { "application/json": { @@ -32399,7 +32399,6 @@ export interface Response$radar$get$email$security$top$locations$by$arc$Status$4 }; } export interface Parameter$radar$get$email$security$top$locations$by$dkim { - dkim: "PASS" | "NONE" | "FAIL"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -32411,6 +32410,7 @@ export interface Parameter$radar$get$email$security$top$locations$by$dkim { dmarc?: ("PASS" | "NONE" | "FAIL")[]; spf?: ("PASS" | "NONE" | "FAIL")[]; format?: "JSON" | "CSV"; + dkim: "PASS" | "NONE" | "FAIL"; } export interface Response$radar$get$email$security$top$locations$by$dkim$Status$200 { "application/json": { @@ -32451,7 +32451,6 @@ export interface Response$radar$get$email$security$top$locations$by$dkim$Status$ }; } export interface Parameter$radar$get$email$security$top$locations$by$dmarc { - dmarc: "PASS" | "NONE" | "FAIL"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -32463,6 +32462,7 @@ export interface Parameter$radar$get$email$security$top$locations$by$dmarc { dkim?: ("PASS" | "NONE" | "FAIL")[]; spf?: ("PASS" | "NONE" | "FAIL")[]; format?: "JSON" | "CSV"; + dmarc: "PASS" | "NONE" | "FAIL"; } export interface Response$radar$get$email$security$top$locations$by$dmarc$Status$200 { "application/json": { @@ -32503,7 +32503,6 @@ export interface Response$radar$get$email$security$top$locations$by$dmarc$Status }; } export interface Parameter$radar$get$email$security$top$locations$by$malicious { - malicious: "MALICIOUS" | "NOT_MALICIOUS"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -32516,6 +32515,7 @@ export interface Parameter$radar$get$email$security$top$locations$by$malicious { dmarc?: ("PASS" | "NONE" | "FAIL")[]; spf?: ("PASS" | "NONE" | "FAIL")[]; format?: "JSON" | "CSV"; + malicious: "MALICIOUS" | "NOT_MALICIOUS"; } export interface Response$radar$get$email$security$top$locations$by$malicious$Status$200 { "application/json": { @@ -32556,7 +32556,6 @@ export interface Response$radar$get$email$security$top$locations$by$malicious$St }; } export interface Parameter$radar$get$email$security$top$locations$by$spam { - spam: "SPAM" | "NOT_SPAM"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -32569,6 +32568,7 @@ export interface Parameter$radar$get$email$security$top$locations$by$spam { dmarc?: ("PASS" | "NONE" | "FAIL")[]; spf?: ("PASS" | "NONE" | "FAIL")[]; format?: "JSON" | "CSV"; + spam: "SPAM" | "NOT_SPAM"; } export interface Response$radar$get$email$security$top$locations$by$spam$Status$200 { "application/json": { @@ -32609,7 +32609,6 @@ export interface Response$radar$get$email$security$top$locations$by$spam$Status$ }; } export interface Parameter$radar$get$email$security$top$locations$by$spf { - spf: "PASS" | "NONE" | "FAIL"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -32621,6 +32620,7 @@ export interface Parameter$radar$get$email$security$top$locations$by$spf { dkim?: ("PASS" | "NONE" | "FAIL")[]; dmarc?: ("PASS" | "NONE" | "FAIL")[]; format?: "JSON" | "CSV"; + spf: "PASS" | "NONE" | "FAIL"; } export interface Response$radar$get$email$security$top$locations$by$spf$Status$200 { "application/json": { @@ -32696,8 +32696,8 @@ export interface Response$radar$get$entities$asn$list$Status$400 { }; } export interface Parameter$radar$get$entities$asn$by$id { - asn: number; format?: "JSON" | "CSV"; + asn: number; } export interface Response$radar$get$entities$asn$by$id$Status$200 { "application/json": { @@ -32743,9 +32743,9 @@ export interface Response$radar$get$entities$asn$by$id$Status$404 { }; } export interface Parameter$radar$get$asns$rel { - asn: number; asn2?: number; format?: "JSON" | "CSV"; + asn: number; } export interface Response$radar$get$asns$rel$Status$200 { "application/json": { @@ -32878,8 +32878,8 @@ export interface Response$radar$get$entities$locations$Status$400 { }; } export interface Parameter$radar$get$entities$location$by$alpha2 { - location: string; format?: "JSON" | "CSV"; + location: string; } export interface Response$radar$get$entities$location$by$alpha2$Status$200 { "application/json": { @@ -33706,7 +33706,6 @@ export interface Response$radar$get$http$top$ases$by$http$requests$Status$404 { }; } export interface Parameter$radar$get$http$top$ases$by$bot$class { - bot_class: "LIKELY_AUTOMATED" | "LIKELY_HUMAN"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -33721,6 +33720,7 @@ export interface Parameter$radar$get$http$top$ases$by$bot$class { os?: ("WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV")[]; tlsVersion?: ("TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC")[]; format?: "JSON" | "CSV"; + bot_class: "LIKELY_AUTOMATED" | "LIKELY_HUMAN"; } export interface Response$radar$get$http$top$ases$by$bot$class$Status$200 { "application/json": { @@ -33761,7 +33761,6 @@ export interface Response$radar$get$http$top$ases$by$bot$class$Status$404 { }; } export interface Parameter$radar$get$http$top$ases$by$device$type { - device_type: "DESKTOP" | "MOBILE" | "OTHER"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -33776,6 +33775,7 @@ export interface Parameter$radar$get$http$top$ases$by$device$type { os?: ("WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV")[]; tlsVersion?: ("TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC")[]; format?: "JSON" | "CSV"; + device_type: "DESKTOP" | "MOBILE" | "OTHER"; } export interface Response$radar$get$http$top$ases$by$device$type$Status$200 { "application/json": { @@ -33816,7 +33816,6 @@ export interface Response$radar$get$http$top$ases$by$device$type$Status$404 { }; } export interface Parameter$radar$get$http$top$ases$by$http$protocol { - http_protocol: "HTTP" | "HTTPS"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -33831,6 +33830,7 @@ export interface Parameter$radar$get$http$top$ases$by$http$protocol { os?: ("WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV")[]; tlsVersion?: ("TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC")[]; format?: "JSON" | "CSV"; + http_protocol: "HTTP" | "HTTPS"; } export interface Response$radar$get$http$top$ases$by$http$protocol$Status$200 { "application/json": { @@ -33871,7 +33871,6 @@ export interface Response$radar$get$http$top$ases$by$http$protocol$Status$404 { }; } export interface Parameter$radar$get$http$top$ases$by$http$version { - http_version: "HTTPv1" | "HTTPv2" | "HTTPv3"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -33886,6 +33885,7 @@ export interface Parameter$radar$get$http$top$ases$by$http$version { os?: ("WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV")[]; tlsVersion?: ("TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC")[]; format?: "JSON" | "CSV"; + http_version: "HTTPv1" | "HTTPv2" | "HTTPv3"; } export interface Response$radar$get$http$top$ases$by$http$version$Status$200 { "application/json": { @@ -33926,7 +33926,6 @@ export interface Response$radar$get$http$top$ases$by$http$version$Status$404 { }; } export interface Parameter$radar$get$http$top$ases$by$ip$version { - ip_version: "IPv4" | "IPv6"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -33941,6 +33940,7 @@ export interface Parameter$radar$get$http$top$ases$by$ip$version { os?: ("WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV")[]; tlsVersion?: ("TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC")[]; format?: "JSON" | "CSV"; + ip_version: "IPv4" | "IPv6"; } export interface Response$radar$get$http$top$ases$by$ip$version$Status$200 { "application/json": { @@ -33981,7 +33981,6 @@ export interface Response$radar$get$http$top$ases$by$ip$version$Status$404 { }; } export interface Parameter$radar$get$http$top$ases$by$operating$system { - os: "WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -33996,6 +33995,7 @@ export interface Parameter$radar$get$http$top$ases$by$operating$system { ipVersion?: ("IPv4" | "IPv6")[]; tlsVersion?: ("TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC")[]; format?: "JSON" | "CSV"; + os: "WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV"; } export interface Response$radar$get$http$top$ases$by$operating$system$Status$200 { "application/json": { @@ -34036,7 +34036,6 @@ export interface Response$radar$get$http$top$ases$by$operating$system$Status$404 }; } export interface Parameter$radar$get$http$top$ases$by$tls$version { - tls_version: "TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -34051,6 +34050,7 @@ export interface Parameter$radar$get$http$top$ases$by$tls$version { ipVersion?: ("IPv4" | "IPv6")[]; os?: ("WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV")[]; format?: "JSON" | "CSV"; + tls_version: "TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC"; } export interface Response$radar$get$http$top$ases$by$tls$version$Status$200 { "application/json": { @@ -34254,7 +34254,6 @@ export interface Response$radar$get$http$top$locations$by$http$requests$Status$4 }; } export interface Parameter$radar$get$http$top$locations$by$bot$class { - bot_class: "LIKELY_AUTOMATED" | "LIKELY_HUMAN"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -34269,6 +34268,7 @@ export interface Parameter$radar$get$http$top$locations$by$bot$class { os?: ("WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV")[]; tlsVersion?: ("TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC")[]; format?: "JSON" | "CSV"; + bot_class: "LIKELY_AUTOMATED" | "LIKELY_HUMAN"; } export interface Response$radar$get$http$top$locations$by$bot$class$Status$200 { "application/json": { @@ -34309,7 +34309,6 @@ export interface Response$radar$get$http$top$locations$by$bot$class$Status$404 { }; } export interface Parameter$radar$get$http$top$locations$by$device$type { - device_type: "DESKTOP" | "MOBILE" | "OTHER"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -34324,6 +34323,7 @@ export interface Parameter$radar$get$http$top$locations$by$device$type { os?: ("WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV")[]; tlsVersion?: ("TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC")[]; format?: "JSON" | "CSV"; + device_type: "DESKTOP" | "MOBILE" | "OTHER"; } export interface Response$radar$get$http$top$locations$by$device$type$Status$200 { "application/json": { @@ -34364,7 +34364,6 @@ export interface Response$radar$get$http$top$locations$by$device$type$Status$404 }; } export interface Parameter$radar$get$http$top$locations$by$http$protocol { - http_protocol: "HTTP" | "HTTPS"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -34379,6 +34378,7 @@ export interface Parameter$radar$get$http$top$locations$by$http$protocol { os?: ("WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV")[]; tlsVersion?: ("TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC")[]; format?: "JSON" | "CSV"; + http_protocol: "HTTP" | "HTTPS"; } export interface Response$radar$get$http$top$locations$by$http$protocol$Status$200 { "application/json": { @@ -34419,7 +34419,6 @@ export interface Response$radar$get$http$top$locations$by$http$protocol$Status$4 }; } export interface Parameter$radar$get$http$top$locations$by$http$version { - http_version: "HTTPv1" | "HTTPv2" | "HTTPv3"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -34434,6 +34433,7 @@ export interface Parameter$radar$get$http$top$locations$by$http$version { os?: ("WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV")[]; tlsVersion?: ("TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC")[]; format?: "JSON" | "CSV"; + http_version: "HTTPv1" | "HTTPv2" | "HTTPv3"; } export interface Response$radar$get$http$top$locations$by$http$version$Status$200 { "application/json": { @@ -34474,7 +34474,6 @@ export interface Response$radar$get$http$top$locations$by$http$version$Status$40 }; } export interface Parameter$radar$get$http$top$locations$by$ip$version { - ip_version: "IPv4" | "IPv6"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -34489,6 +34488,7 @@ export interface Parameter$radar$get$http$top$locations$by$ip$version { os?: ("WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV")[]; tlsVersion?: ("TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC")[]; format?: "JSON" | "CSV"; + ip_version: "IPv4" | "IPv6"; } export interface Response$radar$get$http$top$locations$by$ip$version$Status$200 { "application/json": { @@ -34529,7 +34529,6 @@ export interface Response$radar$get$http$top$locations$by$ip$version$Status$404 }; } export interface Parameter$radar$get$http$top$locations$by$operating$system { - os: "WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -34544,6 +34543,7 @@ export interface Parameter$radar$get$http$top$locations$by$operating$system { ipVersion?: ("IPv4" | "IPv6")[]; tlsVersion?: ("TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC")[]; format?: "JSON" | "CSV"; + os: "WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV"; } export interface Response$radar$get$http$top$locations$by$operating$system$Status$200 { "application/json": { @@ -34584,7 +34584,6 @@ export interface Response$radar$get$http$top$locations$by$operating$system$Statu }; } export interface Parameter$radar$get$http$top$locations$by$tls$version { - tls_version: "TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -34599,6 +34598,7 @@ export interface Parameter$radar$get$http$top$locations$by$tls$version { ipVersion?: ("IPv4" | "IPv6")[]; os?: ("WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV")[]; format?: "JSON" | "CSV"; + tls_version: "TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC"; } export interface Response$radar$get$http$top$locations$by$tls$version$Status$200 { "application/json": { @@ -35040,12 +35040,12 @@ export interface Response$radar$get$quality$speed$top$locations$Status$404 { }; } export interface Parameter$radar$get$ranking$domain$details { - domain: string; limit?: number; rankingType?: "POPULAR" | "TRENDING_RISE" | "TRENDING_STEADY"; name?: string[]; date?: (string | null)[]; format?: "JSON" | "CSV"; + domain: string; } export interface Response$radar$get$ranking$domain$details$Status$200 { "application/json": { @@ -36459,7 +36459,6 @@ export interface Response$zone$level$access$service$tokens$delete$a$service$toke "application/json": Schemas.access_api$response$common$failure; } export interface Parameter$dns$analytics$table { - identifier: Schemas.erIwb89A_identifier; metrics?: Schemas.erIwb89A_metrics; dimensions?: Schemas.erIwb89A_dimensions; since?: Schemas.erIwb89A_since; @@ -36467,6 +36466,7 @@ export interface Parameter$dns$analytics$table { limit?: Schemas.erIwb89A_limit; sort?: Schemas.erIwb89A_sort; filters?: Schemas.erIwb89A_filters; + identifier: Schemas.erIwb89A_identifier; } export interface Response$dns$analytics$table$Status$200 { "application/json": Schemas.erIwb89A_api$response$single & { @@ -36479,7 +36479,6 @@ export interface Response$dns$analytics$table$Status$4XX { }) & Schemas.erIwb89A_api$response$common$failure; } export interface Parameter$dns$analytics$by$time { - identifier: Schemas.erIwb89A_identifier; metrics?: Schemas.erIwb89A_metrics; dimensions?: Schemas.erIwb89A_dimensions; since?: Schemas.erIwb89A_since; @@ -36488,6 +36487,7 @@ export interface Parameter$dns$analytics$by$time { sort?: Schemas.erIwb89A_sort; filters?: Schemas.erIwb89A_filters; time_delta?: Schemas.erIwb89A_time_delta; + identifier: Schemas.erIwb89A_identifier; } export interface Response$dns$analytics$by$time$Status$200 { "application/json": Schemas.erIwb89A_api$response$single & { @@ -36750,8 +36750,8 @@ export interface Response$put$zones$zone_id$activation_check$Status$4XX { "application/json": Schemas.tt1FM6Ha_api$response$common$failure; } export interface Parameter$argo$analytics$for$zone$argo$analytics$for$a$zone { - zone_id: Schemas.argo$analytics_identifier; bins?: string; + zone_id: Schemas.argo$analytics_identifier; } export interface Response$argo$analytics$for$zone$argo$analytics$for$a$zone$Status$200 { "application/json": Schemas.argo$analytics_response_single; @@ -37349,7 +37349,6 @@ export interface Response$account$level$custom$nameservers$usage$for$a$zone$set$ "application/json": Schemas.dns$custom$nameservers_schemas$empty_response & Schemas.dns$custom$nameservers_api$response$common$failure; } export interface Parameter$dns$records$for$a$zone$list$dns$records { - zone_id: Schemas.dns$records_identifier; name?: Schemas.dns$records_name; type?: Schemas.dns$records_type; content?: Schemas.dns$records_content; @@ -37375,6 +37374,7 @@ export interface Parameter$dns$records$for$a$zone$list$dns$records { per_page?: Schemas.dns$records_per_page; order?: Schemas.dns$records_order; direction?: Schemas.dns$records_direction; + zone_id: Schemas.dns$records_identifier; } export interface Response$dns$records$for$a$zone$list$dns$records$Status$200 { "application/json": Schemas.dns$records_dns_response_collection; @@ -37528,13 +37528,13 @@ export interface Response$dnssec$edit$dnssec$status$Status$4XX { "application/json": Schemas.dnssec_dnssec_response_single & Schemas.dnssec_api$response$common$failure; } export interface Parameter$ip$access$rules$for$a$zone$list$ip$access$rules { - zone_id: Schemas.legacy$jhs_common_components$schemas$identifier; filters?: Schemas.legacy$jhs_schemas$filters; "egs-pagination.json"?: Schemas.legacy$jhs_egs$pagination; page?: number; per_page?: number; order?: "configuration.target" | "configuration.value" | "mode"; direction?: "asc" | "desc"; + zone_id: Schemas.legacy$jhs_common_components$schemas$identifier; } export interface Response$ip$access$rules$for$a$zone$list$ip$access$rules$Status$200 { "application/json": Schemas.legacy$jhs_rule_collection_response; @@ -37591,8 +37591,6 @@ export interface Response$ip$access$rules$for$a$zone$update$an$ip$access$rule$St "application/json": Schemas.legacy$jhs_rule_single_response & Schemas.legacy$jhs_api$response$common$failure; } export interface Parameter$waf$rule$groups$list$waf$rule$groups { - package_id: Schemas.waf$managed$rules_identifier; - zone_id: Schemas.waf$managed$rules_schemas$identifier; mode?: Schemas.waf$managed$rules_mode; page?: number; per_page?: number; @@ -37601,6 +37599,8 @@ export interface Parameter$waf$rule$groups$list$waf$rule$groups { match?: "any" | "all"; name?: string; rules_count?: number; + package_id: Schemas.waf$managed$rules_identifier; + zone_id: Schemas.waf$managed$rules_schemas$identifier; } export interface Response$waf$rule$groups$list$waf$rule$groups$Status$200 { "application/json": Schemas.waf$managed$rules_rule_group_response_collection; @@ -37636,8 +37636,6 @@ export interface Response$waf$rule$groups$update$a$waf$rule$group$Status$4XX { "application/json": Schemas.waf$managed$rules_rule_group_response_single & Schemas.waf$managed$rules_api$response$common$failure; } export interface Parameter$waf$rules$list$waf$rules { - package_id: Schemas.waf$managed$rules_identifier; - zone_id: Schemas.waf$managed$rules_schemas$identifier; mode?: "DIS" | "CHL" | "BLK" | "SIM"; group_id?: Schemas.waf$managed$rules_components$schemas$identifier; page?: number; @@ -37647,6 +37645,8 @@ export interface Parameter$waf$rules$list$waf$rules { match?: "any" | "all"; description?: string; priority?: string; + package_id: Schemas.waf$managed$rules_identifier; + zone_id: Schemas.waf$managed$rules_schemas$identifier; } export interface Response$waf$rules$list$waf$rules$Status$200 { "application/json": Schemas.waf$managed$rules_rule_response_collection; @@ -37703,8 +37703,6 @@ export interface Response$zones$0$hold$get$Status$4XX { "application/json": Schemas.zones_schemas$api$response$common$failure; } export interface Parameter$zones$0$hold$post { - /** Zone ID */ - zone_id: Schemas.zones_schemas$identifier; /** * If provided, the zone hold will extend to block any subdomain of the given zone, as well * as SSL4SaaS Custom Hostnames. For example, a zone hold on a zone with the hostname @@ -37712,6 +37710,8 @@ export interface Parameter$zones$0$hold$post { * 'staging.example.com', 'api.staging.example.com', etc. */ include_subdomains?: boolean; + /** Zone ID */ + zone_id: Schemas.zones_schemas$identifier; } export interface Response$zones$0$hold$post$Status$200 { "application/json": Schemas.zones_api$response$single & { @@ -37726,8 +37726,6 @@ export interface Response$zones$0$hold$post$Status$4XX { "application/json": Schemas.zones_schemas$api$response$common$failure; } export interface Parameter$zones$0$hold$delete { - /** Zone ID */ - zone_id: Schemas.zones_schemas$identifier; /** * If \`hold_after\` is provided, the hold will be temporarily disabled, * then automatically re-enabled by the system at the time specified @@ -37735,6 +37733,8 @@ export interface Parameter$zones$0$hold$delete { * disabled indefinitely. */ hold_after?: string; + /** Zone ID */ + zone_id: Schemas.zones_schemas$identifier; } export interface Response$zones$0$hold$delete$Status$200 { "application/json": { @@ -37994,7 +37994,6 @@ export interface Response$page$shield$update$page$shield$settings$Status$4XX { }) & Schemas.page$shield_api$response$common$failure; } export interface Parameter$page$shield$list$page$shield$connections { - zone_id: Schemas.page$shield_identifier; exclude_urls?: string; urls?: string; hosts?: string; @@ -38007,6 +38006,7 @@ export interface Parameter$page$shield$list$page$shield$connections { status?: string; page_url?: string; export?: "csv"; + zone_id: Schemas.page$shield_identifier; } export interface Response$page$shield$list$page$shield$connections$Status$200 { "application/json": Schemas.page$shield_list$zone$connections$response; @@ -38088,7 +38088,6 @@ export interface Response$page$shield$delete$a$page$shield$policy$Status$4XX { "application/json": Schemas.page$shield_get$zone$policy$response & Schemas.page$shield_api$response$common$failure; } export interface Parameter$page$shield$list$page$shield$scripts { - zone_id: Schemas.page$shield_identifier; exclude_urls?: string; urls?: string; hosts?: string; @@ -38102,6 +38101,7 @@ export interface Parameter$page$shield$list$page$shield$scripts { status?: string; page_url?: string; export?: "csv"; + zone_id: Schemas.page$shield_identifier; } export interface Response$page$shield$list$page$shield$scripts$Status$200 { "application/json": Schemas.page$shield_list$zone$scripts$response; @@ -38120,11 +38120,11 @@ export interface Response$page$shield$get$a$page$shield$script$Status$4XX { "application/json": Schemas.page$shield_get$zone$script$response & Schemas.page$shield_api$response$common$failure; } export interface Parameter$page$rules$list$page$rules { - zone_id: Schemas.zones_schemas$identifier; order?: "status" | "priority"; direction?: "asc" | "desc"; match?: "any" | "all"; status?: "active" | "disabled"; + zone_id: Schemas.zones_schemas$identifier; } export interface Response$page$rules$list$page$rules$Status$200 { "application/json": Schemas.zones_pagerule_response_collection; @@ -39800,7 +39800,6 @@ export interface Response$get$zones$zone_identifier$zaraz$export$Status$4XX { "application/json": Schemas.zaraz_api$response$common$failure; } export interface Parameter$get$zones$zone_identifier$zaraz$history { - zone_id: Schemas.zaraz_identifier; /** Ordinal number to start listing the results with. Default value is 0. */ offset?: number; /** Maximum amount of results to list. Default value is 10. */ @@ -39809,6 +39808,7 @@ export interface Parameter$get$zones$zone_identifier$zaraz$history { sortField?: "id" | "user_id" | "description" | "created_at" | "updated_at"; /** Sorting order. Default is DESC. */ sortOrder?: "DESC" | "ASC"; + zone_id: Schemas.zaraz_identifier; } export interface Response$get$zones$zone_identifier$zaraz$history$Status$200 { "application/json": Schemas.zaraz_zaraz$history$response; @@ -39830,9 +39830,9 @@ export interface Response$put$zones$zone_identifier$zaraz$history$Status$4XX { "application/json": Schemas.zaraz_api$response$common$failure; } export interface Parameter$get$zones$zone_identifier$zaraz$config$history { - zone_id: Schemas.zaraz_identifier; /** Comma separated list of Zaraz configuration IDs */ ids: number[]; + zone_id: Schemas.zaraz_identifier; } export interface Response$get$zones$zone_identifier$zaraz$config$history$Status$200 { "application/json": Schemas.zaraz_zaraz$config$history$response; @@ -39895,11 +39895,11 @@ export interface Response$speed$list$pages$Status$4XX { "application/json": Schemas.observatory_api$response$common$failure; } export interface Parameter$speed$list$test$history { - zone_id: Schemas.observatory_identifier; - url: Schemas.observatory_url; page?: number; per_page?: number; region?: Schemas.observatory_region; + zone_id: Schemas.observatory_identifier; + url: Schemas.observatory_url; } export interface Response$speed$list$test$history$Status$200 { "application/json": Schemas.observatory_page$test$response$collection; @@ -39923,9 +39923,9 @@ export interface Response$speed$create$test$Status$4XX { "application/json": Schemas.observatory_api$response$common$failure; } export interface Parameter$speed$delete$tests { + region?: Schemas.observatory_region; zone_id: Schemas.observatory_identifier; url: Schemas.observatory_url; - region?: Schemas.observatory_region; } export interface Response$speed$delete$tests$Status$200 { "application/json": Schemas.observatory_count$response; @@ -39945,8 +39945,6 @@ export interface Response$speed$get$test$Status$4XX { "application/json": Schemas.observatory_api$response$common$failure; } export interface Parameter$speed$list$page$trend { - zone_id: Schemas.observatory_identifier; - url: Schemas.observatory_url; region: Schemas.observatory_region; deviceType: Schemas.observatory_device_type; start: Schemas.observatory_timestamp; @@ -39955,6 +39953,8 @@ export interface Parameter$speed$list$page$trend { tz: string; /** A comma-separated list of metrics to include in the results. */ metrics: string; + zone_id: Schemas.observatory_identifier; + url: Schemas.observatory_url; } export interface Response$speed$list$page$trend$Status$200 { "application/json": Schemas.observatory_trend$response; @@ -39963,9 +39963,9 @@ export interface Response$speed$list$page$trend$Status$4XX { "application/json": Schemas.observatory_api$response$common$failure; } export interface Parameter$speed$get$scheduled$test { + region?: Schemas.observatory_region; zone_id: Schemas.observatory_identifier; url: Schemas.observatory_url; - region?: Schemas.observatory_region; } export interface Response$speed$get$scheduled$test$Status$200 { "application/json": Schemas.observatory_schedule$response$single; @@ -39974,9 +39974,9 @@ export interface Response$speed$get$scheduled$test$Status$4XX { "application/json": Schemas.observatory_api$response$common$failure; } export interface Parameter$speed$create$scheduled$test { + region?: Schemas.observatory_region; zone_id: Schemas.observatory_identifier; url: Schemas.observatory_url; - region?: Schemas.observatory_region; } export interface Response$speed$create$scheduled$test$Status$200 { "application/json": Schemas.observatory_create$schedule$response; @@ -39985,9 +39985,9 @@ export interface Response$speed$create$scheduled$test$Status$4XX { "application/json": Schemas.observatory_api$response$common$failure; } export interface Parameter$speed$delete$test$schedule { + region?: Schemas.observatory_region; zone_id: Schemas.observatory_identifier; url: Schemas.observatory_url; - region?: Schemas.observatory_region; } export interface Response$speed$delete$test$schedule$Status$200 { "application/json": Schemas.observatory_count$response; @@ -40180,10 +40180,10 @@ export interface Response$total$tls$enable$or$disable$total$tls$Status$4XX { "application/json": Schemas.ApQU2qAj_total_tls_settings_response & Schemas.ApQU2qAj_api$response$common$failure; } export interface Parameter$zone$analytics$$$deprecated$$get$analytics$by$co$locations { - zone_identifier: Schemas.dFBpZBFx_identifier; until?: Schemas.dFBpZBFx_until; since?: string | number; continuous?: boolean; + zone_identifier: Schemas.dFBpZBFx_identifier; } export interface Response$zone$analytics$$$deprecated$$get$analytics$by$co$locations$Status$200 { "application/json": Schemas.dFBpZBFx_colo_response; @@ -40192,10 +40192,10 @@ export interface Response$zone$analytics$$$deprecated$$get$analytics$by$co$locat "application/json": Schemas.dFBpZBFx_colo_response & Schemas.dFBpZBFx_api$response$common$failure; } export interface Parameter$zone$analytics$$$deprecated$$get$dashboard { - zone_identifier: Schemas.dFBpZBFx_identifier; until?: Schemas.dFBpZBFx_until; since?: string | number; continuous?: boolean; + zone_identifier: Schemas.dFBpZBFx_identifier; } export interface Response$zone$analytics$$$deprecated$$get$dashboard$Status$200 { "application/json": Schemas.dFBpZBFx_dashboard_response; @@ -40240,8 +40240,8 @@ export interface Response$zone$rate$plan$list$available$rate$plans$Status$4XX { "application/json": Schemas.bill$subs$api_plan_response_collection & Schemas.bill$subs$api_api$response$common$failure; } export interface Parameter$client$certificate$for$a$zone$list$hostname$associations { - zone_identifier: Schemas.ApQU2qAj_identifier; mtls_certificate_id?: string; + zone_identifier: Schemas.ApQU2qAj_identifier; } export interface Response$client$certificate$for$a$zone$list$hostname$associations$Status$200 { "application/json": Schemas.ApQU2qAj_hostname_associations_response; @@ -40262,12 +40262,12 @@ export interface Response$client$certificate$for$a$zone$put$hostname$association "application/json": Schemas.ApQU2qAj_api$response$common$failure; } export interface Parameter$client$certificate$for$a$zone$list$client$certificates { - zone_identifier: Schemas.ApQU2qAj_identifier; status?: "all" | "active" | "pending_reactivation" | "pending_revocation" | "revoked"; page?: number; per_page?: number; limit?: number; offset?: number; + zone_identifier: Schemas.ApQU2qAj_identifier; } export interface Response$client$certificate$for$a$zone$list$client$certificates$Status$200 { "application/json": Schemas.ApQU2qAj_client_certificate_response_collection; @@ -40321,11 +40321,11 @@ export interface Response$client$certificate$for$a$zone$edit$client$certificate$ "application/json": Schemas.ApQU2qAj_api$response$common$failure; } export interface Parameter$custom$ssl$for$a$zone$list$ssl$configurations { - zone_identifier: Schemas.ApQU2qAj_identifier; page?: number; per_page?: number; match?: "any" | "all"; status?: "active" | "expired" | "deleted" | "pending" | "initializing"; + zone_identifier: Schemas.ApQU2qAj_identifier; } export interface Response$custom$ssl$for$a$zone$list$ssl$configurations$Status$200 { "application/json": Schemas.ApQU2qAj_certificate_response_collection; @@ -40410,7 +40410,6 @@ export interface Response$custom$ssl$for$a$zone$re$prioritize$ssl$certificates$S "application/json": Schemas.ApQU2qAj_certificate_response_collection & Schemas.ApQU2qAj_api$response$common$failure; } export interface Parameter$custom$hostname$for$a$zone$list$custom$hostnames { - zone_identifier: Schemas.ApQU2qAj_identifier; hostname?: string; id?: string; page?: number; @@ -40418,6 +40417,7 @@ export interface Parameter$custom$hostname$for$a$zone$list$custom$hostnames { order?: "ssl" | "ssl_status"; direction?: "asc" | "desc"; ssl?: string; + zone_identifier: Schemas.ApQU2qAj_identifier; } export interface Response$custom$hostname$for$a$zone$list$custom$hostnames$Status$200 { "application/json": Schemas.ApQU2qAj_custom_hostname_response_collection; @@ -40584,10 +40584,10 @@ export interface Response$email$routing$settings$enable$email$routing$Status$200 "application/json": Schemas.email_email_settings_response_single; } export interface Parameter$email$routing$routing$rules$list$routing$rules { - zone_identifier: Schemas.email_identifier; page?: number; per_page?: number; enabled?: true | false; + zone_identifier: Schemas.email_identifier; } export interface Response$email$routing$routing$rules$list$routing$rules$Status$200 { "application/json": Schemas.email_rules_response_collection; @@ -40641,7 +40641,6 @@ export interface Response$email$routing$routing$rules$update$catch$all$rule$Stat "application/json": Schemas.email_catch_all_rule_response_single; } export interface Parameter$filters$list$filters { - zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; paused?: Schemas.legacy$jhs_filters_components$schemas$paused; expression?: string; description?: string; @@ -40649,6 +40648,7 @@ export interface Parameter$filters$list$filters { page?: number; per_page?: number; id?: string; + zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; } export interface Response$filters$list$filters$Status$200 { "application/json": Schemas.legacy$jhs_schemas$filter$response$collection; @@ -40734,7 +40734,6 @@ export interface Response$filters$delete$a$filter$Status$4xx { "application/json": Schemas.legacy$jhs_filter$delete$response$single & Schemas.legacy$jhs_api$response$common$failure; } export interface Parameter$zone$lockdown$list$zone$lockdown$rules { - zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; page?: number; description?: Schemas.legacy$jhs_schemas$description_search; modified_on?: Schemas.legacy$jhs_components$schemas$modified_on; @@ -40746,6 +40745,7 @@ export interface Parameter$zone$lockdown$list$zone$lockdown$rules { created_on?: Date; description_search?: string; ip_search?: string; + zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; } export interface Response$zone$lockdown$list$zone$lockdown$rules$Status$200 { "application/json": Schemas.legacy$jhs_zonelockdown_response_collection; @@ -40813,13 +40813,13 @@ export interface Response$zone$lockdown$delete$a$zone$lockdown$rule$Status$4xx { } & Schemas.legacy$jhs_api$response$common$failure; } export interface Parameter$firewall$rules$list$firewall$rules { - zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; description?: string; action?: string; page?: number; per_page?: number; id?: string; paused?: boolean; + zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; } export interface Response$firewall$rules$list$firewall$rules$Status$200 { "application/json": Schemas.legacy$jhs_filter$rules$response$collection; @@ -40885,7 +40885,7 @@ export interface Response$firewall$rules$update$priority$of$firewall$rules$Statu "application/json": Schemas.legacy$jhs_filter$rules$response$collection & Schemas.legacy$jhs_api$response$common$failure; } export interface Parameter$firewall$rules$get$a$firewall$rule { - id?: Schemas.legacy$jhs_firewall$rules_components$schemas$id; + id: Schemas.legacy$jhs_firewall$rules_components$schemas$id; zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; } export interface Response$firewall$rules$get$a$firewall$rule$Status$200 { @@ -40942,12 +40942,12 @@ export interface Response$firewall$rules$update$priority$of$a$firewall$rule$Stat "application/json": Schemas.legacy$jhs_filter$rules$response$collection & Schemas.legacy$jhs_api$response$common$failure; } export interface Parameter$user$agent$blocking$rules$list$user$agent$blocking$rules { - zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; page?: number; description?: Schemas.legacy$jhs_description_search; description_search?: Schemas.legacy$jhs_description_search; per_page?: number; ua_search?: string; + zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; } export interface Response$user$agent$blocking$rules$list$user$agent$blocking$rules$Status$200 { "application/json": Schemas.legacy$jhs_firewalluablock_response_collection; @@ -41016,9 +41016,9 @@ export interface Response$user$agent$blocking$rules$delete$a$user$agent$blocking }) & Schemas.legacy$jhs_api$response$common$failure; } export interface Parameter$waf$overrides$list$waf$overrides { - zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; page?: number; per_page?: number; + zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; } export interface Response$waf$overrides$list$waf$overrides$Status$200 { "application/json": Schemas.legacy$jhs_override_response_collection; @@ -41087,13 +41087,13 @@ export interface Response$waf$overrides$delete$a$waf$override$Status$4xx { } & Schemas.legacy$jhs_api$response$common$failure; } export interface Parameter$waf$packages$list$waf$packages { - zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; page?: number; per_page?: number; order?: "name"; direction?: "asc" | "desc"; match?: "any" | "all"; name?: string; + zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; } export interface Response$waf$packages$list$waf$packages$Status$200 { "application/json": Schemas.legacy$jhs_package_response_collection; @@ -41358,10 +41358,10 @@ export interface Response$logs$received$update$log$retention$flag$Status$4XX { "application/json": Schemas.dFBpZBFx_flag_response & Schemas.dFBpZBFx_api$response$common$failure; } export interface Parameter$logs$received$get$logs$ray$i$ds { - ray_identifier: Schemas.dFBpZBFx_ray_identifier; - zone_identifier: Schemas.dFBpZBFx_identifier; timestamps?: Schemas.dFBpZBFx_timestamps; fields?: string; + ray_identifier: Schemas.dFBpZBFx_ray_identifier; + zone_identifier: Schemas.dFBpZBFx_identifier; } export interface Response$logs$received$get$logs$ray$i$ds$Status$200 { "application/json": Schemas.dFBpZBFx_logs; @@ -41370,13 +41370,13 @@ export interface Response$logs$received$get$logs$ray$i$ds$Status$4XX { "application/json": Schemas.dFBpZBFx_logs & Schemas.dFBpZBFx_api$response$common$failure; } export interface Parameter$logs$received$get$logs$received { - zone_identifier: Schemas.dFBpZBFx_identifier; end: Schemas.dFBpZBFx_end; sample?: Schemas.dFBpZBFx_sample; timestamps?: Schemas.dFBpZBFx_timestamps; count?: number; fields?: string; start?: string | number; + zone_identifier: Schemas.dFBpZBFx_identifier; } export interface Response$logs$received$get$logs$received$Status$200 { "application/json": Schemas.dFBpZBFx_logs; @@ -41529,9 +41529,9 @@ export interface Response$zone$level$authenticated$origin$pulls$set$enablement$f "application/json": Schemas.ApQU2qAj_enabled_response & Schemas.ApQU2qAj_api$response$common$failure; } export interface Parameter$rate$limits$for$a$zone$list$rate$limits { - zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; page?: number; per_page?: number; + zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; } export interface Response$rate$limits$for$a$zone$list$rate$limits$Status$200 { "application/json": Schemas.legacy$jhs_ratelimit_response_collection; @@ -41850,8 +41850,8 @@ export interface Response$zone$snippets$snippet$rules$put$Status$5XX { "application/json": Schemas.ajfne3Yc_api$response$common$failure; } export interface Parameter$certificate$packs$list$certificate$packs { - zone_identifier: Schemas.ApQU2qAj_identifier; status?: "all"; + zone_identifier: Schemas.ApQU2qAj_identifier; } export interface Response$certificate$packs$list$certificate$packs$Status$200 { "application/json": Schemas.ApQU2qAj_certificate_pack_response_collection; @@ -41960,8 +41960,8 @@ export interface Response$universal$ssl$settings$for$a$zone$edit$universal$ssl$s "application/json": Schemas.ApQU2qAj_ssl_universal_settings_response & Schemas.ApQU2qAj_api$response$common$failure; } export interface Parameter$ssl$verification$ssl$verification$details { - zone_identifier: Schemas.ApQU2qAj_identifier; retry?: string; + zone_identifier: Schemas.ApQU2qAj_identifier; } export interface Response$ssl$verification$ssl$verification$details$Status$200 { "application/json": Schemas.ApQU2qAj_ssl_verification_response_collection; @@ -42386,10 +42386,10 @@ export interface Response$web3$hostname$delete$ipfs$universal$path$gateway$conte "application/json": Schemas.YSGOQLq3_api$response$single$id & Schemas.YSGOQLq3_api$response$common$failure; } export interface Parameter$spectrum$aggregate$analytics$get$current$aggregated$analytics { - zone: Schemas.legacy$jhs_common_components$schemas$identifier; appID?: Schemas.legacy$jhs_app_id_param; app_id_param?: Schemas.legacy$jhs_app_id_param; colo_name?: string; + zone: Schemas.legacy$jhs_common_components$schemas$identifier; } export interface Response$spectrum$aggregate$analytics$get$current$aggregated$analytics$Status$200 { "application/json": Schemas.legacy$jhs_analytics$aggregate_components$schemas$response_collection; @@ -42398,7 +42398,6 @@ export interface Response$spectrum$aggregate$analytics$get$current$aggregated$an "application/json": Schemas.legacy$jhs_analytics$aggregate_components$schemas$response_collection & Schemas.legacy$jhs_api$response$common$failure; } export interface Parameter$spectrum$analytics$$$by$time$$get$analytics$by$time { - zone: Schemas.legacy$jhs_common_components$schemas$identifier; dimensions?: Schemas.legacy$jhs_dimensions; sort?: Schemas.legacy$jhs_sort; until?: Schemas.legacy$jhs_schemas$until; @@ -42406,6 +42405,7 @@ export interface Parameter$spectrum$analytics$$$by$time$$get$analytics$by$time { filters?: string; since?: Date; time_delta?: "year" | "quarter" | "month" | "week" | "day" | "hour" | "dekaminute" | "minute"; + zone: Schemas.legacy$jhs_common_components$schemas$identifier; } export interface Response$spectrum$analytics$$$by$time$$get$analytics$by$time$Status$200 { "application/json": Schemas.legacy$jhs_api$response$single; @@ -42414,13 +42414,13 @@ export interface Response$spectrum$analytics$$$by$time$$get$analytics$by$time$St "application/json": Schemas.legacy$jhs_api$response$single & Schemas.legacy$jhs_api$response$common$failure; } export interface Parameter$spectrum$analytics$$$summary$$get$analytics$summary { - zone: Schemas.legacy$jhs_common_components$schemas$identifier; dimensions?: Schemas.legacy$jhs_dimensions; sort?: Schemas.legacy$jhs_sort; until?: Schemas.legacy$jhs_schemas$until; metrics?: ("count" | "bytesIngress" | "bytesEgress" | "durationAvg" | "durationMedian" | "duration90th" | "duration99th")[]; filters?: string; since?: Date; + zone: Schemas.legacy$jhs_common_components$schemas$identifier; } export interface Response$spectrum$analytics$$$summary$$get$analytics$summary$Status$200 { "application/json": Schemas.legacy$jhs_api$response$single; @@ -42429,11 +42429,11 @@ export interface Response$spectrum$analytics$$$summary$$get$analytics$summary$St "application/json": Schemas.legacy$jhs_api$response$single & Schemas.legacy$jhs_api$response$common$failure; } export interface Parameter$spectrum$applications$list$spectrum$applications { - zone: Schemas.legacy$jhs_common_components$schemas$identifier; page?: number; per_page?: number; direction?: "asc" | "desc"; order?: "protocol" | "app_id" | "created_on" | "modified_on" | "dns"; + zone: Schemas.legacy$jhs_common_components$schemas$identifier; } export interface Response$spectrum$applications$list$spectrum$applications$Status$200 { "application/json": Schemas.legacy$jhs_components$schemas$response_collection; diff --git a/test/__tests__/class/__snapshots__/kubernetes-test.ts.snap b/test/__tests__/class/__snapshots__/kubernetes-test.ts.snap index 64b7515..b782dab 100644 --- a/test/__tests__/class/__snapshots__/kubernetes-test.ts.snap +++ b/test/__tests__/class/__snapshots__/kubernetes-test.ts.snap @@ -7144,10 +7144,10 @@ export interface Response$listCoreV1ComponentStatus$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$ComponentStatusList; } export interface Parameter$readCoreV1ComponentStatus { - /** name of the ComponentStatus */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** name of the ComponentStatus */ + name: string; } export interface Response$readCoreV1ComponentStatus$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$ComponentStatus; @@ -7358,10 +7358,10 @@ export interface Parameter$createCoreV1NamespacedBinding { dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createCoreV1NamespacedBinding = RequestBodies.io$k8s$api$core$v1$Binding.Content; export interface Response$createCoreV1NamespacedBinding$Status$200 { @@ -7380,8 +7380,6 @@ export interface Response$createCoreV1NamespacedBinding$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Binding; } export interface Parameter$listCoreV1NamespacedConfigMap { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -7408,6 +7406,8 @@ export interface Parameter$listCoreV1NamespacedConfigMap { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listCoreV1NamespacedConfigMap$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$ConfigMapList; @@ -7417,14 +7417,14 @@ export interface Response$listCoreV1NamespacedConfigMap$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$ConfigMapList; } export interface Parameter$createCoreV1NamespacedConfigMap { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createCoreV1NamespacedConfigMap = RequestBodies.io$k8s$api$core$v1$ConfigMap.Content; export interface Response$createCoreV1NamespacedConfigMap$Status$200 { @@ -7443,8 +7443,6 @@ export interface Response$createCoreV1NamespacedConfigMap$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ConfigMap; } export interface Parameter$deleteCoreV1CollectionNamespacedConfigMap { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -7479,6 +7477,8 @@ export interface Parameter$deleteCoreV1CollectionNamespacedConfigMap { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1CollectionNamespacedConfigMap = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1CollectionNamespacedConfigMap$Status$200 { @@ -7487,16 +7487,16 @@ export interface Response$deleteCoreV1CollectionNamespacedConfigMap$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readCoreV1NamespacedConfigMap { - /** name of the ConfigMap */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the ConfigMap */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readCoreV1NamespacedConfigMap$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$ConfigMap; @@ -7504,16 +7504,16 @@ export interface Response$readCoreV1NamespacedConfigMap$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ConfigMap; } export interface Parameter$replaceCoreV1NamespacedConfigMap { - /** name of the ConfigMap */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the ConfigMap */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceCoreV1NamespacedConfigMap = RequestBodies.io$k8s$api$core$v1$ConfigMap.Content; export interface Response$replaceCoreV1NamespacedConfigMap$Status$200 { @@ -7527,10 +7527,6 @@ export interface Response$replaceCoreV1NamespacedConfigMap$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ConfigMap; } export interface Parameter$deleteCoreV1NamespacedConfigMap { - /** name of the ConfigMap */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -7541,6 +7537,10 @@ export interface Parameter$deleteCoreV1NamespacedConfigMap { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the ConfigMap */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1NamespacedConfigMap = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1NamespacedConfigMap$Status$200 { @@ -7554,10 +7554,6 @@ export interface Response$deleteCoreV1NamespacedConfigMap$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchCoreV1NamespacedConfigMap { - /** name of the ConfigMap */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -7566,6 +7562,10 @@ export interface Parameter$patchCoreV1NamespacedConfigMap { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the ConfigMap */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchCoreV1NamespacedConfigMap = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedConfigMap$Status$200 { @@ -7574,8 +7574,6 @@ export interface Response$patchCoreV1NamespacedConfigMap$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ConfigMap; } export interface Parameter$listCoreV1NamespacedEndpoints { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -7602,6 +7600,8 @@ export interface Parameter$listCoreV1NamespacedEndpoints { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listCoreV1NamespacedEndpoints$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$EndpointsList; @@ -7611,14 +7611,14 @@ export interface Response$listCoreV1NamespacedEndpoints$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$EndpointsList; } export interface Parameter$createCoreV1NamespacedEndpoints { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createCoreV1NamespacedEndpoints = RequestBodies.io$k8s$api$core$v1$Endpoints.Content; export interface Response$createCoreV1NamespacedEndpoints$Status$200 { @@ -7637,8 +7637,6 @@ export interface Response$createCoreV1NamespacedEndpoints$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Endpoints; } export interface Parameter$deleteCoreV1CollectionNamespacedEndpoints { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -7673,6 +7671,8 @@ export interface Parameter$deleteCoreV1CollectionNamespacedEndpoints { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1CollectionNamespacedEndpoints = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1CollectionNamespacedEndpoints$Status$200 { @@ -7681,16 +7681,16 @@ export interface Response$deleteCoreV1CollectionNamespacedEndpoints$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readCoreV1NamespacedEndpoints { - /** name of the Endpoints */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the Endpoints */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readCoreV1NamespacedEndpoints$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$Endpoints; @@ -7698,16 +7698,16 @@ export interface Response$readCoreV1NamespacedEndpoints$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Endpoints; } export interface Parameter$replaceCoreV1NamespacedEndpoints { - /** name of the Endpoints */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Endpoints */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceCoreV1NamespacedEndpoints = RequestBodies.io$k8s$api$core$v1$Endpoints.Content; export interface Response$replaceCoreV1NamespacedEndpoints$Status$200 { @@ -7721,10 +7721,6 @@ export interface Response$replaceCoreV1NamespacedEndpoints$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Endpoints; } export interface Parameter$deleteCoreV1NamespacedEndpoints { - /** name of the Endpoints */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -7735,6 +7731,10 @@ export interface Parameter$deleteCoreV1NamespacedEndpoints { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the Endpoints */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1NamespacedEndpoints = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1NamespacedEndpoints$Status$200 { @@ -7748,10 +7748,6 @@ export interface Response$deleteCoreV1NamespacedEndpoints$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchCoreV1NamespacedEndpoints { - /** name of the Endpoints */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -7760,6 +7756,10 @@ export interface Parameter$patchCoreV1NamespacedEndpoints { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Endpoints */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchCoreV1NamespacedEndpoints = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedEndpoints$Status$200 { @@ -7768,8 +7768,6 @@ export interface Response$patchCoreV1NamespacedEndpoints$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Endpoints; } export interface Parameter$listCoreV1NamespacedEvent { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -7796,6 +7794,8 @@ export interface Parameter$listCoreV1NamespacedEvent { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listCoreV1NamespacedEvent$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$EventList; @@ -7805,14 +7805,14 @@ export interface Response$listCoreV1NamespacedEvent$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$EventList; } export interface Parameter$createCoreV1NamespacedEvent { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createCoreV1NamespacedEvent = RequestBodies.io$k8s$api$core$v1$Event.Content; export interface Response$createCoreV1NamespacedEvent$Status$200 { @@ -7831,8 +7831,6 @@ export interface Response$createCoreV1NamespacedEvent$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Event; } export interface Parameter$deleteCoreV1CollectionNamespacedEvent { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -7867,6 +7865,8 @@ export interface Parameter$deleteCoreV1CollectionNamespacedEvent { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1CollectionNamespacedEvent = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1CollectionNamespacedEvent$Status$200 { @@ -7875,16 +7875,16 @@ export interface Response$deleteCoreV1CollectionNamespacedEvent$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readCoreV1NamespacedEvent { - /** name of the Event */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the Event */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readCoreV1NamespacedEvent$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$Event; @@ -7892,16 +7892,16 @@ export interface Response$readCoreV1NamespacedEvent$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Event; } export interface Parameter$replaceCoreV1NamespacedEvent { - /** name of the Event */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Event */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceCoreV1NamespacedEvent = RequestBodies.io$k8s$api$core$v1$Event.Content; export interface Response$replaceCoreV1NamespacedEvent$Status$200 { @@ -7915,10 +7915,6 @@ export interface Response$replaceCoreV1NamespacedEvent$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Event; } export interface Parameter$deleteCoreV1NamespacedEvent { - /** name of the Event */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -7929,6 +7925,10 @@ export interface Parameter$deleteCoreV1NamespacedEvent { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the Event */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1NamespacedEvent = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1NamespacedEvent$Status$200 { @@ -7942,10 +7942,6 @@ export interface Response$deleteCoreV1NamespacedEvent$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchCoreV1NamespacedEvent { - /** name of the Event */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -7954,6 +7950,10 @@ export interface Parameter$patchCoreV1NamespacedEvent { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Event */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchCoreV1NamespacedEvent = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedEvent$Status$200 { @@ -7962,8 +7962,6 @@ export interface Response$patchCoreV1NamespacedEvent$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Event; } export interface Parameter$listCoreV1NamespacedLimitRange { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -7990,6 +7988,8 @@ export interface Parameter$listCoreV1NamespacedLimitRange { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listCoreV1NamespacedLimitRange$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$LimitRangeList; @@ -7999,14 +7999,14 @@ export interface Response$listCoreV1NamespacedLimitRange$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$LimitRangeList; } export interface Parameter$createCoreV1NamespacedLimitRange { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createCoreV1NamespacedLimitRange = RequestBodies.io$k8s$api$core$v1$LimitRange.Content; export interface Response$createCoreV1NamespacedLimitRange$Status$200 { @@ -8025,8 +8025,6 @@ export interface Response$createCoreV1NamespacedLimitRange$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$LimitRange; } export interface Parameter$deleteCoreV1CollectionNamespacedLimitRange { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -8061,6 +8059,8 @@ export interface Parameter$deleteCoreV1CollectionNamespacedLimitRange { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1CollectionNamespacedLimitRange = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1CollectionNamespacedLimitRange$Status$200 { @@ -8069,16 +8069,16 @@ export interface Response$deleteCoreV1CollectionNamespacedLimitRange$Status$200 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readCoreV1NamespacedLimitRange { - /** name of the LimitRange */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the LimitRange */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readCoreV1NamespacedLimitRange$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$LimitRange; @@ -8086,16 +8086,16 @@ export interface Response$readCoreV1NamespacedLimitRange$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$LimitRange; } export interface Parameter$replaceCoreV1NamespacedLimitRange { - /** name of the LimitRange */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the LimitRange */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceCoreV1NamespacedLimitRange = RequestBodies.io$k8s$api$core$v1$LimitRange.Content; export interface Response$replaceCoreV1NamespacedLimitRange$Status$200 { @@ -8109,10 +8109,6 @@ export interface Response$replaceCoreV1NamespacedLimitRange$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$LimitRange; } export interface Parameter$deleteCoreV1NamespacedLimitRange { - /** name of the LimitRange */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -8123,6 +8119,10 @@ export interface Parameter$deleteCoreV1NamespacedLimitRange { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the LimitRange */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1NamespacedLimitRange = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1NamespacedLimitRange$Status$200 { @@ -8136,10 +8136,6 @@ export interface Response$deleteCoreV1NamespacedLimitRange$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchCoreV1NamespacedLimitRange { - /** name of the LimitRange */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -8148,6 +8144,10 @@ export interface Parameter$patchCoreV1NamespacedLimitRange { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the LimitRange */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchCoreV1NamespacedLimitRange = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedLimitRange$Status$200 { @@ -8156,8 +8156,6 @@ export interface Response$patchCoreV1NamespacedLimitRange$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$LimitRange; } export interface Parameter$listCoreV1NamespacedPersistentVolumeClaim { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -8184,6 +8182,8 @@ export interface Parameter$listCoreV1NamespacedPersistentVolumeClaim { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listCoreV1NamespacedPersistentVolumeClaim$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$PersistentVolumeClaimList; @@ -8193,14 +8193,14 @@ export interface Response$listCoreV1NamespacedPersistentVolumeClaim$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$PersistentVolumeClaimList; } export interface Parameter$createCoreV1NamespacedPersistentVolumeClaim { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createCoreV1NamespacedPersistentVolumeClaim = RequestBodies.io$k8s$api$core$v1$PersistentVolumeClaim.Content; export interface Response$createCoreV1NamespacedPersistentVolumeClaim$Status$200 { @@ -8219,8 +8219,6 @@ export interface Response$createCoreV1NamespacedPersistentVolumeClaim$Status$202 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; } export interface Parameter$deleteCoreV1CollectionNamespacedPersistentVolumeClaim { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -8255,6 +8253,8 @@ export interface Parameter$deleteCoreV1CollectionNamespacedPersistentVolumeClaim timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1CollectionNamespacedPersistentVolumeClaim = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1CollectionNamespacedPersistentVolumeClaim$Status$200 { @@ -8263,16 +8263,16 @@ export interface Response$deleteCoreV1CollectionNamespacedPersistentVolumeClaim$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readCoreV1NamespacedPersistentVolumeClaim { - /** name of the PersistentVolumeClaim */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the PersistentVolumeClaim */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readCoreV1NamespacedPersistentVolumeClaim$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; @@ -8280,16 +8280,16 @@ export interface Response$readCoreV1NamespacedPersistentVolumeClaim$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; } export interface Parameter$replaceCoreV1NamespacedPersistentVolumeClaim { - /** name of the PersistentVolumeClaim */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the PersistentVolumeClaim */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceCoreV1NamespacedPersistentVolumeClaim = RequestBodies.io$k8s$api$core$v1$PersistentVolumeClaim.Content; export interface Response$replaceCoreV1NamespacedPersistentVolumeClaim$Status$200 { @@ -8303,10 +8303,6 @@ export interface Response$replaceCoreV1NamespacedPersistentVolumeClaim$Status$20 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; } export interface Parameter$deleteCoreV1NamespacedPersistentVolumeClaim { - /** name of the PersistentVolumeClaim */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -8317,6 +8313,10 @@ export interface Parameter$deleteCoreV1NamespacedPersistentVolumeClaim { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the PersistentVolumeClaim */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1NamespacedPersistentVolumeClaim = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1NamespacedPersistentVolumeClaim$Status$200 { @@ -8330,10 +8330,6 @@ export interface Response$deleteCoreV1NamespacedPersistentVolumeClaim$Status$202 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; } export interface Parameter$patchCoreV1NamespacedPersistentVolumeClaim { - /** name of the PersistentVolumeClaim */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -8342,6 +8338,10 @@ export interface Parameter$patchCoreV1NamespacedPersistentVolumeClaim { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the PersistentVolumeClaim */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchCoreV1NamespacedPersistentVolumeClaim = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedPersistentVolumeClaim$Status$200 { @@ -8350,12 +8350,12 @@ export interface Response$patchCoreV1NamespacedPersistentVolumeClaim$Status$200 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; } export interface Parameter$readCoreV1NamespacedPersistentVolumeClaimStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the PersistentVolumeClaim */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readCoreV1NamespacedPersistentVolumeClaimStatus$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; @@ -8363,16 +8363,16 @@ export interface Response$readCoreV1NamespacedPersistentVolumeClaimStatus$Status "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; } export interface Parameter$replaceCoreV1NamespacedPersistentVolumeClaimStatus { - /** name of the PersistentVolumeClaim */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the PersistentVolumeClaim */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceCoreV1NamespacedPersistentVolumeClaimStatus = RequestBodies.io$k8s$api$core$v1$PersistentVolumeClaim.Content; export interface Response$replaceCoreV1NamespacedPersistentVolumeClaimStatus$Status$200 { @@ -8386,10 +8386,6 @@ export interface Response$replaceCoreV1NamespacedPersistentVolumeClaimStatus$Sta "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; } export interface Parameter$patchCoreV1NamespacedPersistentVolumeClaimStatus { - /** name of the PersistentVolumeClaim */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -8398,6 +8394,10 @@ export interface Parameter$patchCoreV1NamespacedPersistentVolumeClaimStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the PersistentVolumeClaim */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchCoreV1NamespacedPersistentVolumeClaimStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedPersistentVolumeClaimStatus$Status$200 { @@ -8406,8 +8406,6 @@ export interface Response$patchCoreV1NamespacedPersistentVolumeClaimStatus$Statu "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; } export interface Parameter$listCoreV1NamespacedPod { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -8434,6 +8432,8 @@ export interface Parameter$listCoreV1NamespacedPod { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listCoreV1NamespacedPod$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$PodList; @@ -8443,14 +8443,14 @@ export interface Response$listCoreV1NamespacedPod$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$PodList; } export interface Parameter$createCoreV1NamespacedPod { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createCoreV1NamespacedPod = RequestBodies.io$k8s$api$core$v1$Pod.Content; export interface Response$createCoreV1NamespacedPod$Status$200 { @@ -8469,8 +8469,6 @@ export interface Response$createCoreV1NamespacedPod$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Pod; } export interface Parameter$deleteCoreV1CollectionNamespacedPod { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -8505,6 +8503,8 @@ export interface Parameter$deleteCoreV1CollectionNamespacedPod { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1CollectionNamespacedPod = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1CollectionNamespacedPod$Status$200 { @@ -8513,16 +8513,16 @@ export interface Response$deleteCoreV1CollectionNamespacedPod$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readCoreV1NamespacedPod { - /** name of the Pod */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the Pod */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readCoreV1NamespacedPod$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$Pod; @@ -8530,16 +8530,16 @@ export interface Response$readCoreV1NamespacedPod$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Pod; } export interface Parameter$replaceCoreV1NamespacedPod { - /** name of the Pod */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Pod */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceCoreV1NamespacedPod = RequestBodies.io$k8s$api$core$v1$Pod.Content; export interface Response$replaceCoreV1NamespacedPod$Status$200 { @@ -8553,10 +8553,6 @@ export interface Response$replaceCoreV1NamespacedPod$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Pod; } export interface Parameter$deleteCoreV1NamespacedPod { - /** name of the Pod */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -8567,6 +8563,10 @@ export interface Parameter$deleteCoreV1NamespacedPod { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the Pod */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1NamespacedPod = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1NamespacedPod$Status$200 { @@ -8580,10 +8580,6 @@ export interface Response$deleteCoreV1NamespacedPod$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Pod; } export interface Parameter$patchCoreV1NamespacedPod { - /** name of the Pod */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -8592,6 +8588,10 @@ export interface Parameter$patchCoreV1NamespacedPod { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Pod */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchCoreV1NamespacedPod = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedPod$Status$200 { @@ -8602,10 +8602,6 @@ export interface Response$patchCoreV1NamespacedPod$Status$200 { export interface Parameter$connectCoreV1GetNamespacedPodAttach { /** The container in which to execute the command. Defaults to only container if there is only one container in the pod. */ container?: string; - /** name of the PodAttachOptions */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** Stderr if true indicates that stderr is to be redirected for the attach call. Defaults to true. */ stderr?: boolean; /** Stdin if true, redirects the standard input stream of the pod for this call. Defaults to false. */ @@ -8614,6 +8610,10 @@ export interface Parameter$connectCoreV1GetNamespacedPodAttach { stdout?: boolean; /** TTY if true indicates that a tty will be allocated for the attach call. This is passed through the container runtime so the tty is allocated on the worker node by the container runtime. Defaults to false. */ tty?: boolean; + /** name of the PodAttachOptions */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$connectCoreV1GetNamespacedPodAttach$Status$200 { "*/*": string; @@ -8621,10 +8621,6 @@ export interface Response$connectCoreV1GetNamespacedPodAttach$Status$200 { export interface Parameter$connectCoreV1PostNamespacedPodAttach { /** The container in which to execute the command. Defaults to only container if there is only one container in the pod. */ container?: string; - /** name of the PodAttachOptions */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** Stderr if true indicates that stderr is to be redirected for the attach call. Defaults to true. */ stderr?: boolean; /** Stdin if true, redirects the standard input stream of the pod for this call. Defaults to false. */ @@ -8633,6 +8629,10 @@ export interface Parameter$connectCoreV1PostNamespacedPodAttach { stdout?: boolean; /** TTY if true indicates that a tty will be allocated for the attach call. This is passed through the container runtime so the tty is allocated on the worker node by the container runtime. Defaults to false. */ tty?: boolean; + /** name of the PodAttachOptions */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$connectCoreV1PostNamespacedPodAttach$Status$200 { "*/*": string; @@ -8642,12 +8642,12 @@ export interface Parameter$createCoreV1NamespacedPodBinding { dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the Binding */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export type RequestBody$createCoreV1NamespacedPodBinding = RequestBodies.io$k8s$api$core$v1$Binding.Content; export interface Response$createCoreV1NamespacedPodBinding$Status$200 { @@ -8670,12 +8670,12 @@ export interface Parameter$createCoreV1NamespacedPodEviction { dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the Eviction */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface RequestBody$createCoreV1NamespacedPodEviction { "*/*": Schemas.io$k8s$api$policy$v1beta1$Eviction; @@ -8700,10 +8700,6 @@ export interface Parameter$connectCoreV1GetNamespacedPodExec { command?: string; /** Container in which to execute the command. Defaults to only container if there is only one container in the pod. */ container?: string; - /** name of the PodExecOptions */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** Redirect the standard error stream of the pod for this call. Defaults to true. */ stderr?: boolean; /** Redirect the standard input stream of the pod for this call. Defaults to false. */ @@ -8712,6 +8708,10 @@ export interface Parameter$connectCoreV1GetNamespacedPodExec { stdout?: boolean; /** TTY if true indicates that a tty will be allocated for the exec call. Defaults to false. */ tty?: boolean; + /** name of the PodExecOptions */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$connectCoreV1GetNamespacedPodExec$Status$200 { "*/*": string; @@ -8721,10 +8721,6 @@ export interface Parameter$connectCoreV1PostNamespacedPodExec { command?: string; /** Container in which to execute the command. Defaults to only container if there is only one container in the pod. */ container?: string; - /** name of the PodExecOptions */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** Redirect the standard error stream of the pod for this call. Defaults to true. */ stderr?: boolean; /** Redirect the standard input stream of the pod for this call. Defaults to false. */ @@ -8733,6 +8729,10 @@ export interface Parameter$connectCoreV1PostNamespacedPodExec { stdout?: boolean; /** TTY if true indicates that a tty will be allocated for the exec call. Defaults to false. */ tty?: boolean; + /** name of the PodExecOptions */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$connectCoreV1PostNamespacedPodExec$Status$200 { "*/*": string; @@ -8746,10 +8746,6 @@ export interface Parameter$readCoreV1NamespacedPodLog { insecureSkipTLSVerifyBackend?: boolean; /** If set, the number of bytes to read from the server before terminating the log output. This may not display a complete final line of logging, and may return slightly more or slightly less than the specified limit. */ limitBytes?: number; - /** name of the Pod */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Return previous terminated container logs. Defaults to false. */ @@ -8760,6 +8756,10 @@ export interface Parameter$readCoreV1NamespacedPodLog { tailLines?: number; /** If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line of log output. Defaults to false. */ timestamps?: boolean; + /** name of the Pod */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readCoreV1NamespacedPodLog$Status$200 { "text/plain": string; @@ -8768,188 +8768,188 @@ export interface Response$readCoreV1NamespacedPodLog$Status$200 { "application/vnd.kubernetes.protobuf": string; } export interface Parameter$connectCoreV1GetNamespacedPodPortforward { + /** List of ports to forward Required when using WebSockets */ + ports?: number; /** name of the PodPortForwardOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** List of ports to forward Required when using WebSockets */ - ports?: number; } export interface Response$connectCoreV1GetNamespacedPodPortforward$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PostNamespacedPodPortforward { + /** List of ports to forward Required when using WebSockets */ + ports?: number; /** name of the PodPortForwardOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** List of ports to forward Required when using WebSockets */ - ports?: number; } export interface Response$connectCoreV1PostNamespacedPodPortforward$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1GetNamespacedPodProxy { + /** Path is the URL path to use for the current proxy request to pod. */ + path?: string; /** name of the PodProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the URL path to use for the current proxy request to pod. */ - path?: string; } export interface Response$connectCoreV1GetNamespacedPodProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PutNamespacedPodProxy { + /** Path is the URL path to use for the current proxy request to pod. */ + path?: string; /** name of the PodProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the URL path to use for the current proxy request to pod. */ - path?: string; } export interface Response$connectCoreV1PutNamespacedPodProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PostNamespacedPodProxy { + /** Path is the URL path to use for the current proxy request to pod. */ + path?: string; /** name of the PodProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the URL path to use for the current proxy request to pod. */ - path?: string; } export interface Response$connectCoreV1PostNamespacedPodProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1DeleteNamespacedPodProxy { + /** Path is the URL path to use for the current proxy request to pod. */ + path?: string; /** name of the PodProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the URL path to use for the current proxy request to pod. */ - path?: string; } export interface Response$connectCoreV1DeleteNamespacedPodProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1OptionsNamespacedPodProxy { + /** Path is the URL path to use for the current proxy request to pod. */ + path?: string; /** name of the PodProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the URL path to use for the current proxy request to pod. */ - path?: string; } export interface Response$connectCoreV1OptionsNamespacedPodProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1HeadNamespacedPodProxy { + /** Path is the URL path to use for the current proxy request to pod. */ + path?: string; /** name of the PodProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the URL path to use for the current proxy request to pod. */ - path?: string; } export interface Response$connectCoreV1HeadNamespacedPodProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PatchNamespacedPodProxy { + /** Path is the URL path to use for the current proxy request to pod. */ + path?: string; /** name of the PodProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the URL path to use for the current proxy request to pod. */ - path?: string; } export interface Response$connectCoreV1PatchNamespacedPodProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1GetNamespacedPodProxyWithPath { + /** path to the resource */ + path: string; /** name of the PodProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the URL path to use for the current proxy request to pod. */ - path?: string; } export interface Response$connectCoreV1GetNamespacedPodProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PutNamespacedPodProxyWithPath { + /** path to the resource */ + path: string; /** name of the PodProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the URL path to use for the current proxy request to pod. */ - path?: string; } export interface Response$connectCoreV1PutNamespacedPodProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PostNamespacedPodProxyWithPath { + /** path to the resource */ + path: string; /** name of the PodProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the URL path to use for the current proxy request to pod. */ - path?: string; } export interface Response$connectCoreV1PostNamespacedPodProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1DeleteNamespacedPodProxyWithPath { + /** path to the resource */ + path: string; /** name of the PodProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the URL path to use for the current proxy request to pod. */ - path?: string; } export interface Response$connectCoreV1DeleteNamespacedPodProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1OptionsNamespacedPodProxyWithPath { + /** path to the resource */ + path: string; /** name of the PodProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the URL path to use for the current proxy request to pod. */ - path?: string; } export interface Response$connectCoreV1OptionsNamespacedPodProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1HeadNamespacedPodProxyWithPath { + /** path to the resource */ + path: string; /** name of the PodProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the URL path to use for the current proxy request to pod. */ - path?: string; } export interface Response$connectCoreV1HeadNamespacedPodProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PatchNamespacedPodProxyWithPath { + /** path to the resource */ + path: string; /** name of the PodProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the URL path to use for the current proxy request to pod. */ - path?: string; } export interface Response$connectCoreV1PatchNamespacedPodProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$readCoreV1NamespacedPodStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the Pod */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readCoreV1NamespacedPodStatus$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$Pod; @@ -8957,16 +8957,16 @@ export interface Response$readCoreV1NamespacedPodStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Pod; } export interface Parameter$replaceCoreV1NamespacedPodStatus { - /** name of the Pod */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Pod */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceCoreV1NamespacedPodStatus = RequestBodies.io$k8s$api$core$v1$Pod.Content; export interface Response$replaceCoreV1NamespacedPodStatus$Status$200 { @@ -8980,10 +8980,6 @@ export interface Response$replaceCoreV1NamespacedPodStatus$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Pod; } export interface Parameter$patchCoreV1NamespacedPodStatus { - /** name of the Pod */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -8992,6 +8988,10 @@ export interface Parameter$patchCoreV1NamespacedPodStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Pod */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchCoreV1NamespacedPodStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedPodStatus$Status$200 { @@ -9000,8 +9000,6 @@ export interface Response$patchCoreV1NamespacedPodStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Pod; } export interface Parameter$listCoreV1NamespacedPodTemplate { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -9028,6 +9026,8 @@ export interface Parameter$listCoreV1NamespacedPodTemplate { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listCoreV1NamespacedPodTemplate$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$PodTemplateList; @@ -9037,14 +9037,14 @@ export interface Response$listCoreV1NamespacedPodTemplate$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$PodTemplateList; } export interface Parameter$createCoreV1NamespacedPodTemplate { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createCoreV1NamespacedPodTemplate = RequestBodies.io$k8s$api$core$v1$PodTemplate.Content; export interface Response$createCoreV1NamespacedPodTemplate$Status$200 { @@ -9063,8 +9063,6 @@ export interface Response$createCoreV1NamespacedPodTemplate$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PodTemplate; } export interface Parameter$deleteCoreV1CollectionNamespacedPodTemplate { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -9099,6 +9097,8 @@ export interface Parameter$deleteCoreV1CollectionNamespacedPodTemplate { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1CollectionNamespacedPodTemplate = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1CollectionNamespacedPodTemplate$Status$200 { @@ -9107,16 +9107,16 @@ export interface Response$deleteCoreV1CollectionNamespacedPodTemplate$Status$200 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readCoreV1NamespacedPodTemplate { - /** name of the PodTemplate */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the PodTemplate */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readCoreV1NamespacedPodTemplate$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$PodTemplate; @@ -9124,16 +9124,16 @@ export interface Response$readCoreV1NamespacedPodTemplate$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PodTemplate; } export interface Parameter$replaceCoreV1NamespacedPodTemplate { - /** name of the PodTemplate */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the PodTemplate */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceCoreV1NamespacedPodTemplate = RequestBodies.io$k8s$api$core$v1$PodTemplate.Content; export interface Response$replaceCoreV1NamespacedPodTemplate$Status$200 { @@ -9147,10 +9147,6 @@ export interface Response$replaceCoreV1NamespacedPodTemplate$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PodTemplate; } export interface Parameter$deleteCoreV1NamespacedPodTemplate { - /** name of the PodTemplate */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -9161,6 +9157,10 @@ export interface Parameter$deleteCoreV1NamespacedPodTemplate { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the PodTemplate */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1NamespacedPodTemplate = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1NamespacedPodTemplate$Status$200 { @@ -9174,10 +9174,6 @@ export interface Response$deleteCoreV1NamespacedPodTemplate$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PodTemplate; } export interface Parameter$patchCoreV1NamespacedPodTemplate { - /** name of the PodTemplate */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -9186,6 +9182,10 @@ export interface Parameter$patchCoreV1NamespacedPodTemplate { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the PodTemplate */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchCoreV1NamespacedPodTemplate = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedPodTemplate$Status$200 { @@ -9194,8 +9194,6 @@ export interface Response$patchCoreV1NamespacedPodTemplate$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PodTemplate; } export interface Parameter$listCoreV1NamespacedReplicationController { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -9222,6 +9220,8 @@ export interface Parameter$listCoreV1NamespacedReplicationController { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listCoreV1NamespacedReplicationController$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$ReplicationControllerList; @@ -9231,14 +9231,14 @@ export interface Response$listCoreV1NamespacedReplicationController$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$ReplicationControllerList; } export interface Parameter$createCoreV1NamespacedReplicationController { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createCoreV1NamespacedReplicationController = RequestBodies.io$k8s$api$core$v1$ReplicationController.Content; export interface Response$createCoreV1NamespacedReplicationController$Status$200 { @@ -9257,8 +9257,6 @@ export interface Response$createCoreV1NamespacedReplicationController$Status$202 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ReplicationController; } export interface Parameter$deleteCoreV1CollectionNamespacedReplicationController { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -9293,6 +9291,8 @@ export interface Parameter$deleteCoreV1CollectionNamespacedReplicationController timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1CollectionNamespacedReplicationController = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1CollectionNamespacedReplicationController$Status$200 { @@ -9301,16 +9301,16 @@ export interface Response$deleteCoreV1CollectionNamespacedReplicationController$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readCoreV1NamespacedReplicationController { - /** name of the ReplicationController */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the ReplicationController */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readCoreV1NamespacedReplicationController$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$ReplicationController; @@ -9318,16 +9318,16 @@ export interface Response$readCoreV1NamespacedReplicationController$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ReplicationController; } export interface Parameter$replaceCoreV1NamespacedReplicationController { - /** name of the ReplicationController */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the ReplicationController */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceCoreV1NamespacedReplicationController = RequestBodies.io$k8s$api$core$v1$ReplicationController.Content; export interface Response$replaceCoreV1NamespacedReplicationController$Status$200 { @@ -9341,10 +9341,6 @@ export interface Response$replaceCoreV1NamespacedReplicationController$Status$20 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ReplicationController; } export interface Parameter$deleteCoreV1NamespacedReplicationController { - /** name of the ReplicationController */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -9355,6 +9351,10 @@ export interface Parameter$deleteCoreV1NamespacedReplicationController { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the ReplicationController */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1NamespacedReplicationController = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1NamespacedReplicationController$Status$200 { @@ -9368,10 +9368,6 @@ export interface Response$deleteCoreV1NamespacedReplicationController$Status$202 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchCoreV1NamespacedReplicationController { - /** name of the ReplicationController */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -9380,6 +9376,10 @@ export interface Parameter$patchCoreV1NamespacedReplicationController { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the ReplicationController */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchCoreV1NamespacedReplicationController = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedReplicationController$Status$200 { @@ -9388,12 +9388,12 @@ export interface Response$patchCoreV1NamespacedReplicationController$Status$200 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ReplicationController; } export interface Parameter$readCoreV1NamespacedReplicationControllerScale { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the Scale */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readCoreV1NamespacedReplicationControllerScale$Status$200 { "application/json": Schemas.io$k8s$api$autoscaling$v1$Scale; @@ -9401,16 +9401,16 @@ export interface Response$readCoreV1NamespacedReplicationControllerScale$Status$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; } export interface Parameter$replaceCoreV1NamespacedReplicationControllerScale { - /** name of the Scale */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Scale */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceCoreV1NamespacedReplicationControllerScale = RequestBodies.io$k8s$api$autoscaling$v1$Scale.Content; export interface Response$replaceCoreV1NamespacedReplicationControllerScale$Status$200 { @@ -9424,10 +9424,6 @@ export interface Response$replaceCoreV1NamespacedReplicationControllerScale$Stat "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; } export interface Parameter$patchCoreV1NamespacedReplicationControllerScale { - /** name of the Scale */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -9436,6 +9432,10 @@ export interface Parameter$patchCoreV1NamespacedReplicationControllerScale { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Scale */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchCoreV1NamespacedReplicationControllerScale = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedReplicationControllerScale$Status$200 { @@ -9444,12 +9444,12 @@ export interface Response$patchCoreV1NamespacedReplicationControllerScale$Status "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; } export interface Parameter$readCoreV1NamespacedReplicationControllerStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the ReplicationController */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readCoreV1NamespacedReplicationControllerStatus$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$ReplicationController; @@ -9457,16 +9457,16 @@ export interface Response$readCoreV1NamespacedReplicationControllerStatus$Status "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ReplicationController; } export interface Parameter$replaceCoreV1NamespacedReplicationControllerStatus { - /** name of the ReplicationController */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the ReplicationController */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceCoreV1NamespacedReplicationControllerStatus = RequestBodies.io$k8s$api$core$v1$ReplicationController.Content; export interface Response$replaceCoreV1NamespacedReplicationControllerStatus$Status$200 { @@ -9480,10 +9480,6 @@ export interface Response$replaceCoreV1NamespacedReplicationControllerStatus$Sta "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ReplicationController; } export interface Parameter$patchCoreV1NamespacedReplicationControllerStatus { - /** name of the ReplicationController */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -9492,6 +9488,10 @@ export interface Parameter$patchCoreV1NamespacedReplicationControllerStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the ReplicationController */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchCoreV1NamespacedReplicationControllerStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedReplicationControllerStatus$Status$200 { @@ -9500,8 +9500,6 @@ export interface Response$patchCoreV1NamespacedReplicationControllerStatus$Statu "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ReplicationController; } export interface Parameter$listCoreV1NamespacedResourceQuota { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -9528,6 +9526,8 @@ export interface Parameter$listCoreV1NamespacedResourceQuota { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listCoreV1NamespacedResourceQuota$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$ResourceQuotaList; @@ -9537,14 +9537,14 @@ export interface Response$listCoreV1NamespacedResourceQuota$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$ResourceQuotaList; } export interface Parameter$createCoreV1NamespacedResourceQuota { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createCoreV1NamespacedResourceQuota = RequestBodies.io$k8s$api$core$v1$ResourceQuota.Content; export interface Response$createCoreV1NamespacedResourceQuota$Status$200 { @@ -9563,8 +9563,6 @@ export interface Response$createCoreV1NamespacedResourceQuota$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ResourceQuota; } export interface Parameter$deleteCoreV1CollectionNamespacedResourceQuota { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -9599,6 +9597,8 @@ export interface Parameter$deleteCoreV1CollectionNamespacedResourceQuota { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1CollectionNamespacedResourceQuota = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1CollectionNamespacedResourceQuota$Status$200 { @@ -9607,16 +9607,16 @@ export interface Response$deleteCoreV1CollectionNamespacedResourceQuota$Status$2 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readCoreV1NamespacedResourceQuota { - /** name of the ResourceQuota */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the ResourceQuota */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readCoreV1NamespacedResourceQuota$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$ResourceQuota; @@ -9624,16 +9624,16 @@ export interface Response$readCoreV1NamespacedResourceQuota$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ResourceQuota; } export interface Parameter$replaceCoreV1NamespacedResourceQuota { - /** name of the ResourceQuota */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the ResourceQuota */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceCoreV1NamespacedResourceQuota = RequestBodies.io$k8s$api$core$v1$ResourceQuota.Content; export interface Response$replaceCoreV1NamespacedResourceQuota$Status$200 { @@ -9647,10 +9647,6 @@ export interface Response$replaceCoreV1NamespacedResourceQuota$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ResourceQuota; } export interface Parameter$deleteCoreV1NamespacedResourceQuota { - /** name of the ResourceQuota */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -9661,6 +9657,10 @@ export interface Parameter$deleteCoreV1NamespacedResourceQuota { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the ResourceQuota */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1NamespacedResourceQuota = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1NamespacedResourceQuota$Status$200 { @@ -9674,10 +9674,6 @@ export interface Response$deleteCoreV1NamespacedResourceQuota$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ResourceQuota; } export interface Parameter$patchCoreV1NamespacedResourceQuota { - /** name of the ResourceQuota */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -9686,6 +9682,10 @@ export interface Parameter$patchCoreV1NamespacedResourceQuota { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the ResourceQuota */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchCoreV1NamespacedResourceQuota = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedResourceQuota$Status$200 { @@ -9694,12 +9694,12 @@ export interface Response$patchCoreV1NamespacedResourceQuota$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ResourceQuota; } export interface Parameter$readCoreV1NamespacedResourceQuotaStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the ResourceQuota */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readCoreV1NamespacedResourceQuotaStatus$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$ResourceQuota; @@ -9707,16 +9707,16 @@ export interface Response$readCoreV1NamespacedResourceQuotaStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ResourceQuota; } export interface Parameter$replaceCoreV1NamespacedResourceQuotaStatus { - /** name of the ResourceQuota */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the ResourceQuota */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceCoreV1NamespacedResourceQuotaStatus = RequestBodies.io$k8s$api$core$v1$ResourceQuota.Content; export interface Response$replaceCoreV1NamespacedResourceQuotaStatus$Status$200 { @@ -9730,10 +9730,6 @@ export interface Response$replaceCoreV1NamespacedResourceQuotaStatus$Status$201 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ResourceQuota; } export interface Parameter$patchCoreV1NamespacedResourceQuotaStatus { - /** name of the ResourceQuota */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -9742,6 +9738,10 @@ export interface Parameter$patchCoreV1NamespacedResourceQuotaStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the ResourceQuota */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchCoreV1NamespacedResourceQuotaStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedResourceQuotaStatus$Status$200 { @@ -9750,8 +9750,6 @@ export interface Response$patchCoreV1NamespacedResourceQuotaStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ResourceQuota; } export interface Parameter$listCoreV1NamespacedSecret { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -9778,6 +9776,8 @@ export interface Parameter$listCoreV1NamespacedSecret { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listCoreV1NamespacedSecret$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$SecretList; @@ -9787,14 +9787,14 @@ export interface Response$listCoreV1NamespacedSecret$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$SecretList; } export interface Parameter$createCoreV1NamespacedSecret { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createCoreV1NamespacedSecret = RequestBodies.io$k8s$api$core$v1$Secret.Content; export interface Response$createCoreV1NamespacedSecret$Status$200 { @@ -9813,8 +9813,6 @@ export interface Response$createCoreV1NamespacedSecret$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Secret; } export interface Parameter$deleteCoreV1CollectionNamespacedSecret { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -9849,6 +9847,8 @@ export interface Parameter$deleteCoreV1CollectionNamespacedSecret { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1CollectionNamespacedSecret = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1CollectionNamespacedSecret$Status$200 { @@ -9857,16 +9857,16 @@ export interface Response$deleteCoreV1CollectionNamespacedSecret$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readCoreV1NamespacedSecret { - /** name of the Secret */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the Secret */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readCoreV1NamespacedSecret$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$Secret; @@ -9874,16 +9874,16 @@ export interface Response$readCoreV1NamespacedSecret$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Secret; } export interface Parameter$replaceCoreV1NamespacedSecret { - /** name of the Secret */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Secret */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceCoreV1NamespacedSecret = RequestBodies.io$k8s$api$core$v1$Secret.Content; export interface Response$replaceCoreV1NamespacedSecret$Status$200 { @@ -9897,10 +9897,6 @@ export interface Response$replaceCoreV1NamespacedSecret$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Secret; } export interface Parameter$deleteCoreV1NamespacedSecret { - /** name of the Secret */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -9911,6 +9907,10 @@ export interface Parameter$deleteCoreV1NamespacedSecret { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the Secret */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1NamespacedSecret = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1NamespacedSecret$Status$200 { @@ -9924,10 +9924,6 @@ export interface Response$deleteCoreV1NamespacedSecret$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchCoreV1NamespacedSecret { - /** name of the Secret */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -9936,6 +9932,10 @@ export interface Parameter$patchCoreV1NamespacedSecret { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Secret */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchCoreV1NamespacedSecret = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedSecret$Status$200 { @@ -9944,8 +9944,6 @@ export interface Response$patchCoreV1NamespacedSecret$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Secret; } export interface Parameter$listCoreV1NamespacedServiceAccount { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -9972,6 +9970,8 @@ export interface Parameter$listCoreV1NamespacedServiceAccount { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listCoreV1NamespacedServiceAccount$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$ServiceAccountList; @@ -9981,14 +9981,14 @@ export interface Response$listCoreV1NamespacedServiceAccount$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$ServiceAccountList; } export interface Parameter$createCoreV1NamespacedServiceAccount { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createCoreV1NamespacedServiceAccount = RequestBodies.io$k8s$api$core$v1$ServiceAccount.Content; export interface Response$createCoreV1NamespacedServiceAccount$Status$200 { @@ -10007,8 +10007,6 @@ export interface Response$createCoreV1NamespacedServiceAccount$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ServiceAccount; } export interface Parameter$deleteCoreV1CollectionNamespacedServiceAccount { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -10043,6 +10041,8 @@ export interface Parameter$deleteCoreV1CollectionNamespacedServiceAccount { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1CollectionNamespacedServiceAccount = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1CollectionNamespacedServiceAccount$Status$200 { @@ -10051,16 +10051,16 @@ export interface Response$deleteCoreV1CollectionNamespacedServiceAccount$Status$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readCoreV1NamespacedServiceAccount { - /** name of the ServiceAccount */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the ServiceAccount */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readCoreV1NamespacedServiceAccount$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$ServiceAccount; @@ -10068,16 +10068,16 @@ export interface Response$readCoreV1NamespacedServiceAccount$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ServiceAccount; } export interface Parameter$replaceCoreV1NamespacedServiceAccount { - /** name of the ServiceAccount */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the ServiceAccount */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceCoreV1NamespacedServiceAccount = RequestBodies.io$k8s$api$core$v1$ServiceAccount.Content; export interface Response$replaceCoreV1NamespacedServiceAccount$Status$200 { @@ -10091,10 +10091,6 @@ export interface Response$replaceCoreV1NamespacedServiceAccount$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ServiceAccount; } export interface Parameter$deleteCoreV1NamespacedServiceAccount { - /** name of the ServiceAccount */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -10105,6 +10101,10 @@ export interface Parameter$deleteCoreV1NamespacedServiceAccount { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the ServiceAccount */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1NamespacedServiceAccount = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1NamespacedServiceAccount$Status$200 { @@ -10118,10 +10118,6 @@ export interface Response$deleteCoreV1NamespacedServiceAccount$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ServiceAccount; } export interface Parameter$patchCoreV1NamespacedServiceAccount { - /** name of the ServiceAccount */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -10130,6 +10126,10 @@ export interface Parameter$patchCoreV1NamespacedServiceAccount { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the ServiceAccount */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchCoreV1NamespacedServiceAccount = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedServiceAccount$Status$200 { @@ -10142,12 +10142,12 @@ export interface Parameter$createCoreV1NamespacedServiceAccountToken { dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the TokenRequest */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface RequestBody$createCoreV1NamespacedServiceAccountToken { "*/*": Schemas.io$k8s$api$authentication$v1$TokenRequest; @@ -10168,8 +10168,6 @@ export interface Response$createCoreV1NamespacedServiceAccountToken$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$authentication$v1$TokenRequest; } export interface Parameter$listCoreV1NamespacedService { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -10196,6 +10194,8 @@ export interface Parameter$listCoreV1NamespacedService { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listCoreV1NamespacedService$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$ServiceList; @@ -10205,14 +10205,14 @@ export interface Response$listCoreV1NamespacedService$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$ServiceList; } export interface Parameter$createCoreV1NamespacedService { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createCoreV1NamespacedService = RequestBodies.io$k8s$api$core$v1$Service.Content; export interface Response$createCoreV1NamespacedService$Status$200 { @@ -10231,16 +10231,16 @@ export interface Response$createCoreV1NamespacedService$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Service; } export interface Parameter$readCoreV1NamespacedService { - /** name of the Service */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the Service */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readCoreV1NamespacedService$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$Service; @@ -10248,16 +10248,16 @@ export interface Response$readCoreV1NamespacedService$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Service; } export interface Parameter$replaceCoreV1NamespacedService { - /** name of the Service */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Service */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceCoreV1NamespacedService = RequestBodies.io$k8s$api$core$v1$Service.Content; export interface Response$replaceCoreV1NamespacedService$Status$200 { @@ -10271,10 +10271,6 @@ export interface Response$replaceCoreV1NamespacedService$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Service; } export interface Parameter$deleteCoreV1NamespacedService { - /** name of the Service */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -10285,6 +10281,10 @@ export interface Parameter$deleteCoreV1NamespacedService { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the Service */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1NamespacedService = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1NamespacedService$Status$200 { @@ -10298,10 +10298,6 @@ export interface Response$deleteCoreV1NamespacedService$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchCoreV1NamespacedService { - /** name of the Service */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -10310,6 +10306,10 @@ export interface Parameter$patchCoreV1NamespacedService { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Service */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchCoreV1NamespacedService = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedService$Status$200 { @@ -10318,166 +10318,166 @@ export interface Response$patchCoreV1NamespacedService$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Service; } export interface Parameter$connectCoreV1GetNamespacedServiceProxy { + /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ + path?: string; /** name of the ServiceProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ - path?: string; } export interface Response$connectCoreV1GetNamespacedServiceProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PutNamespacedServiceProxy { + /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ + path?: string; /** name of the ServiceProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ - path?: string; } export interface Response$connectCoreV1PutNamespacedServiceProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PostNamespacedServiceProxy { + /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ + path?: string; /** name of the ServiceProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ - path?: string; } export interface Response$connectCoreV1PostNamespacedServiceProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1DeleteNamespacedServiceProxy { + /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ + path?: string; /** name of the ServiceProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ - path?: string; } export interface Response$connectCoreV1DeleteNamespacedServiceProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1OptionsNamespacedServiceProxy { + /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ + path?: string; /** name of the ServiceProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ - path?: string; } export interface Response$connectCoreV1OptionsNamespacedServiceProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1HeadNamespacedServiceProxy { + /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ + path?: string; /** name of the ServiceProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ - path?: string; } export interface Response$connectCoreV1HeadNamespacedServiceProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PatchNamespacedServiceProxy { + /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ + path?: string; /** name of the ServiceProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ - path?: string; } export interface Response$connectCoreV1PatchNamespacedServiceProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1GetNamespacedServiceProxyWithPath { + /** path to the resource */ + path: string; /** name of the ServiceProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ - path?: string; } export interface Response$connectCoreV1GetNamespacedServiceProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PutNamespacedServiceProxyWithPath { + /** path to the resource */ + path: string; /** name of the ServiceProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ - path?: string; } export interface Response$connectCoreV1PutNamespacedServiceProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PostNamespacedServiceProxyWithPath { + /** path to the resource */ + path: string; /** name of the ServiceProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ - path?: string; } export interface Response$connectCoreV1PostNamespacedServiceProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1DeleteNamespacedServiceProxyWithPath { + /** path to the resource */ + path: string; /** name of the ServiceProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ - path?: string; } export interface Response$connectCoreV1DeleteNamespacedServiceProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1OptionsNamespacedServiceProxyWithPath { + /** path to the resource */ + path: string; /** name of the ServiceProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ - path?: string; } export interface Response$connectCoreV1OptionsNamespacedServiceProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1HeadNamespacedServiceProxyWithPath { + /** path to the resource */ + path: string; /** name of the ServiceProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ - path?: string; } export interface Response$connectCoreV1HeadNamespacedServiceProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PatchNamespacedServiceProxyWithPath { + /** path to the resource */ + path: string; /** name of the ServiceProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ - path?: string; } export interface Response$connectCoreV1PatchNamespacedServiceProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$readCoreV1NamespacedServiceStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the Service */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readCoreV1NamespacedServiceStatus$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$Service; @@ -10485,16 +10485,16 @@ export interface Response$readCoreV1NamespacedServiceStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Service; } export interface Parameter$replaceCoreV1NamespacedServiceStatus { - /** name of the Service */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Service */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceCoreV1NamespacedServiceStatus = RequestBodies.io$k8s$api$core$v1$Service.Content; export interface Response$replaceCoreV1NamespacedServiceStatus$Status$200 { @@ -10508,10 +10508,6 @@ export interface Response$replaceCoreV1NamespacedServiceStatus$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Service; } export interface Parameter$patchCoreV1NamespacedServiceStatus { - /** name of the Service */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -10520,6 +10516,10 @@ export interface Parameter$patchCoreV1NamespacedServiceStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Service */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchCoreV1NamespacedServiceStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedServiceStatus$Status$200 { @@ -10528,14 +10528,14 @@ export interface Response$patchCoreV1NamespacedServiceStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Service; } export interface Parameter$readCoreV1Namespace { - /** name of the Namespace */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the Namespace */ + name: string; } export interface Response$readCoreV1Namespace$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$Namespace; @@ -10543,14 +10543,14 @@ export interface Response$readCoreV1Namespace$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Namespace; } export interface Parameter$replaceCoreV1Namespace { - /** name of the Namespace */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Namespace */ + name: string; } export type RequestBody$replaceCoreV1Namespace = RequestBodies.io$k8s$api$core$v1$Namespace.Content; export interface Response$replaceCoreV1Namespace$Status$200 { @@ -10564,8 +10564,6 @@ export interface Response$replaceCoreV1Namespace$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Namespace; } export interface Parameter$deleteCoreV1Namespace { - /** name of the Namespace */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -10576,6 +10574,8 @@ export interface Parameter$deleteCoreV1Namespace { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the Namespace */ + name: string; } export type RequestBody$deleteCoreV1Namespace = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1Namespace$Status$200 { @@ -10589,8 +10589,6 @@ export interface Response$deleteCoreV1Namespace$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchCoreV1Namespace { - /** name of the Namespace */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -10599,6 +10597,8 @@ export interface Parameter$patchCoreV1Namespace { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Namespace */ + name: string; } export type RequestBody$patchCoreV1Namespace = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1Namespace$Status$200 { @@ -10611,10 +10611,10 @@ export interface Parameter$replaceCoreV1NamespaceFinalize { dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; - /** name of the Namespace */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** name of the Namespace */ + name: string; } export type RequestBody$replaceCoreV1NamespaceFinalize = RequestBodies.io$k8s$api$core$v1$Namespace.Content; export interface Response$replaceCoreV1NamespaceFinalize$Status$200 { @@ -10628,10 +10628,10 @@ export interface Response$replaceCoreV1NamespaceFinalize$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Namespace; } export interface Parameter$readCoreV1NamespaceStatus { - /** name of the Namespace */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** name of the Namespace */ + name: string; } export interface Response$readCoreV1NamespaceStatus$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$Namespace; @@ -10639,14 +10639,14 @@ export interface Response$readCoreV1NamespaceStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Namespace; } export interface Parameter$replaceCoreV1NamespaceStatus { - /** name of the Namespace */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Namespace */ + name: string; } export type RequestBody$replaceCoreV1NamespaceStatus = RequestBodies.io$k8s$api$core$v1$Namespace.Content; export interface Response$replaceCoreV1NamespaceStatus$Status$200 { @@ -10660,8 +10660,6 @@ export interface Response$replaceCoreV1NamespaceStatus$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Namespace; } export interface Parameter$patchCoreV1NamespaceStatus { - /** name of the Namespace */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -10670,6 +10668,8 @@ export interface Parameter$patchCoreV1NamespaceStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Namespace */ + name: string; } export type RequestBody$patchCoreV1NamespaceStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespaceStatus$Status$200 { @@ -10779,14 +10779,14 @@ export interface Response$deleteCoreV1CollectionNode$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readCoreV1Node { - /** name of the Node */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the Node */ + name: string; } export interface Response$readCoreV1Node$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$Node; @@ -10794,14 +10794,14 @@ export interface Response$readCoreV1Node$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Node; } export interface Parameter$replaceCoreV1Node { - /** name of the Node */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Node */ + name: string; } export type RequestBody$replaceCoreV1Node = RequestBodies.io$k8s$api$core$v1$Node.Content; export interface Response$replaceCoreV1Node$Status$200 { @@ -10815,8 +10815,6 @@ export interface Response$replaceCoreV1Node$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Node; } export interface Parameter$deleteCoreV1Node { - /** name of the Node */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -10827,6 +10825,8 @@ export interface Parameter$deleteCoreV1Node { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the Node */ + name: string; } export type RequestBody$deleteCoreV1Node = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1Node$Status$200 { @@ -10840,8 +10840,6 @@ export interface Response$deleteCoreV1Node$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchCoreV1Node { - /** name of the Node */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -10850,6 +10848,8 @@ export interface Parameter$patchCoreV1Node { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Node */ + name: string; } export type RequestBody$patchCoreV1Node = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1Node$Status$200 { @@ -10858,136 +10858,136 @@ export interface Response$patchCoreV1Node$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Node; } export interface Parameter$connectCoreV1GetNodeProxy { - /** name of the NodeProxyOptions */ - name: string; /** Path is the URL path to use for the current proxy request to node. */ path?: string; + /** name of the NodeProxyOptions */ + name: string; } export interface Response$connectCoreV1GetNodeProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PutNodeProxy { - /** name of the NodeProxyOptions */ - name: string; /** Path is the URL path to use for the current proxy request to node. */ path?: string; + /** name of the NodeProxyOptions */ + name: string; } export interface Response$connectCoreV1PutNodeProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PostNodeProxy { - /** name of the NodeProxyOptions */ - name: string; /** Path is the URL path to use for the current proxy request to node. */ path?: string; + /** name of the NodeProxyOptions */ + name: string; } export interface Response$connectCoreV1PostNodeProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1DeleteNodeProxy { - /** name of the NodeProxyOptions */ - name: string; /** Path is the URL path to use for the current proxy request to node. */ path?: string; + /** name of the NodeProxyOptions */ + name: string; } export interface Response$connectCoreV1DeleteNodeProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1OptionsNodeProxy { - /** name of the NodeProxyOptions */ - name: string; /** Path is the URL path to use for the current proxy request to node. */ path?: string; + /** name of the NodeProxyOptions */ + name: string; } export interface Response$connectCoreV1OptionsNodeProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1HeadNodeProxy { - /** name of the NodeProxyOptions */ - name: string; /** Path is the URL path to use for the current proxy request to node. */ path?: string; + /** name of the NodeProxyOptions */ + name: string; } export interface Response$connectCoreV1HeadNodeProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PatchNodeProxy { - /** name of the NodeProxyOptions */ - name: string; /** Path is the URL path to use for the current proxy request to node. */ path?: string; + /** name of the NodeProxyOptions */ + name: string; } export interface Response$connectCoreV1PatchNodeProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1GetNodeProxyWithPath { + /** path to the resource */ + path: string; /** name of the NodeProxyOptions */ name: string; - /** Path is the URL path to use for the current proxy request to node. */ - path?: string; } export interface Response$connectCoreV1GetNodeProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PutNodeProxyWithPath { + /** path to the resource */ + path: string; /** name of the NodeProxyOptions */ name: string; - /** Path is the URL path to use for the current proxy request to node. */ - path?: string; } export interface Response$connectCoreV1PutNodeProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PostNodeProxyWithPath { + /** path to the resource */ + path: string; /** name of the NodeProxyOptions */ name: string; - /** Path is the URL path to use for the current proxy request to node. */ - path?: string; } export interface Response$connectCoreV1PostNodeProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1DeleteNodeProxyWithPath { + /** path to the resource */ + path: string; /** name of the NodeProxyOptions */ name: string; - /** Path is the URL path to use for the current proxy request to node. */ - path?: string; } export interface Response$connectCoreV1DeleteNodeProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1OptionsNodeProxyWithPath { + /** path to the resource */ + path: string; /** name of the NodeProxyOptions */ name: string; - /** Path is the URL path to use for the current proxy request to node. */ - path?: string; } export interface Response$connectCoreV1OptionsNodeProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1HeadNodeProxyWithPath { + /** path to the resource */ + path: string; /** name of the NodeProxyOptions */ name: string; - /** Path is the URL path to use for the current proxy request to node. */ - path?: string; } export interface Response$connectCoreV1HeadNodeProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PatchNodeProxyWithPath { + /** path to the resource */ + path: string; /** name of the NodeProxyOptions */ name: string; - /** Path is the URL path to use for the current proxy request to node. */ - path?: string; } export interface Response$connectCoreV1PatchNodeProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$readCoreV1NodeStatus { - /** name of the Node */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** name of the Node */ + name: string; } export interface Response$readCoreV1NodeStatus$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$Node; @@ -10995,14 +10995,14 @@ export interface Response$readCoreV1NodeStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Node; } export interface Parameter$replaceCoreV1NodeStatus { - /** name of the Node */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Node */ + name: string; } export type RequestBody$replaceCoreV1NodeStatus = RequestBodies.io$k8s$api$core$v1$Node.Content; export interface Response$replaceCoreV1NodeStatus$Status$200 { @@ -11016,8 +11016,6 @@ export interface Response$replaceCoreV1NodeStatus$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Node; } export interface Parameter$patchCoreV1NodeStatus { - /** name of the Node */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -11026,6 +11024,8 @@ export interface Parameter$patchCoreV1NodeStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Node */ + name: string; } export type RequestBody$patchCoreV1NodeStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NodeStatus$Status$200 { @@ -11170,14 +11170,14 @@ export interface Response$deleteCoreV1CollectionPersistentVolume$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readCoreV1PersistentVolume { - /** name of the PersistentVolume */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the PersistentVolume */ + name: string; } export interface Response$readCoreV1PersistentVolume$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$PersistentVolume; @@ -11185,14 +11185,14 @@ export interface Response$readCoreV1PersistentVolume$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolume; } export interface Parameter$replaceCoreV1PersistentVolume { - /** name of the PersistentVolume */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the PersistentVolume */ + name: string; } export type RequestBody$replaceCoreV1PersistentVolume = RequestBodies.io$k8s$api$core$v1$PersistentVolume.Content; export interface Response$replaceCoreV1PersistentVolume$Status$200 { @@ -11206,8 +11206,6 @@ export interface Response$replaceCoreV1PersistentVolume$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolume; } export interface Parameter$deleteCoreV1PersistentVolume { - /** name of the PersistentVolume */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -11218,6 +11216,8 @@ export interface Parameter$deleteCoreV1PersistentVolume { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the PersistentVolume */ + name: string; } export type RequestBody$deleteCoreV1PersistentVolume = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1PersistentVolume$Status$200 { @@ -11231,8 +11231,6 @@ export interface Response$deleteCoreV1PersistentVolume$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolume; } export interface Parameter$patchCoreV1PersistentVolume { - /** name of the PersistentVolume */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -11241,6 +11239,8 @@ export interface Parameter$patchCoreV1PersistentVolume { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the PersistentVolume */ + name: string; } export type RequestBody$patchCoreV1PersistentVolume = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1PersistentVolume$Status$200 { @@ -11249,10 +11249,10 @@ export interface Response$patchCoreV1PersistentVolume$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolume; } export interface Parameter$readCoreV1PersistentVolumeStatus { - /** name of the PersistentVolume */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** name of the PersistentVolume */ + name: string; } export interface Response$readCoreV1PersistentVolumeStatus$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$PersistentVolume; @@ -11260,14 +11260,14 @@ export interface Response$readCoreV1PersistentVolumeStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolume; } export interface Parameter$replaceCoreV1PersistentVolumeStatus { - /** name of the PersistentVolume */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the PersistentVolume */ + name: string; } export type RequestBody$replaceCoreV1PersistentVolumeStatus = RequestBodies.io$k8s$api$core$v1$PersistentVolume.Content; export interface Response$replaceCoreV1PersistentVolumeStatus$Status$200 { @@ -11281,8 +11281,6 @@ export interface Response$replaceCoreV1PersistentVolumeStatus$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolume; } export interface Parameter$patchCoreV1PersistentVolumeStatus { - /** name of the PersistentVolume */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -11291,6 +11289,8 @@ export interface Parameter$patchCoreV1PersistentVolumeStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the PersistentVolume */ + name: string; } export type RequestBody$patchCoreV1PersistentVolumeStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1PersistentVolumeStatus$Status$200 { @@ -11737,8 +11737,6 @@ export interface Parameter$watchCoreV1NamespacedConfigMapList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -11747,6 +11745,8 @@ export interface Parameter$watchCoreV1NamespacedConfigMapList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedConfigMapList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -11774,10 +11774,6 @@ export interface Parameter$watchCoreV1NamespacedConfigMap { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the ConfigMap */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -11786,6 +11782,10 @@ export interface Parameter$watchCoreV1NamespacedConfigMap { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the ConfigMap */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedConfigMap$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -11813,8 +11813,6 @@ export interface Parameter$watchCoreV1NamespacedEndpointsList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -11823,6 +11821,8 @@ export interface Parameter$watchCoreV1NamespacedEndpointsList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedEndpointsList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -11850,10 +11850,6 @@ export interface Parameter$watchCoreV1NamespacedEndpoints { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the Endpoints */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -11862,6 +11858,10 @@ export interface Parameter$watchCoreV1NamespacedEndpoints { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the Endpoints */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedEndpoints$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -11889,8 +11889,6 @@ export interface Parameter$watchCoreV1NamespacedEventList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -11899,6 +11897,8 @@ export interface Parameter$watchCoreV1NamespacedEventList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedEventList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -11926,10 +11926,6 @@ export interface Parameter$watchCoreV1NamespacedEvent { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the Event */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -11938,6 +11934,10 @@ export interface Parameter$watchCoreV1NamespacedEvent { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the Event */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedEvent$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -11965,8 +11965,6 @@ export interface Parameter$watchCoreV1NamespacedLimitRangeList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -11975,6 +11973,8 @@ export interface Parameter$watchCoreV1NamespacedLimitRangeList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedLimitRangeList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -12002,10 +12002,6 @@ export interface Parameter$watchCoreV1NamespacedLimitRange { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the LimitRange */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -12014,6 +12010,10 @@ export interface Parameter$watchCoreV1NamespacedLimitRange { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the LimitRange */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedLimitRange$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -12041,8 +12041,6 @@ export interface Parameter$watchCoreV1NamespacedPersistentVolumeClaimList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -12051,6 +12049,8 @@ export interface Parameter$watchCoreV1NamespacedPersistentVolumeClaimList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedPersistentVolumeClaimList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -12078,10 +12078,6 @@ export interface Parameter$watchCoreV1NamespacedPersistentVolumeClaim { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the PersistentVolumeClaim */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -12090,6 +12086,10 @@ export interface Parameter$watchCoreV1NamespacedPersistentVolumeClaim { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the PersistentVolumeClaim */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedPersistentVolumeClaim$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -12117,8 +12117,6 @@ export interface Parameter$watchCoreV1NamespacedPodList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -12127,6 +12125,8 @@ export interface Parameter$watchCoreV1NamespacedPodList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedPodList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -12154,10 +12154,6 @@ export interface Parameter$watchCoreV1NamespacedPod { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the Pod */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -12166,6 +12162,10 @@ export interface Parameter$watchCoreV1NamespacedPod { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the Pod */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedPod$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -12193,8 +12193,6 @@ export interface Parameter$watchCoreV1NamespacedPodTemplateList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -12203,6 +12201,8 @@ export interface Parameter$watchCoreV1NamespacedPodTemplateList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedPodTemplateList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -12230,10 +12230,6 @@ export interface Parameter$watchCoreV1NamespacedPodTemplate { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the PodTemplate */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -12242,6 +12238,10 @@ export interface Parameter$watchCoreV1NamespacedPodTemplate { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the PodTemplate */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedPodTemplate$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -12269,8 +12269,6 @@ export interface Parameter$watchCoreV1NamespacedReplicationControllerList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -12279,6 +12277,8 @@ export interface Parameter$watchCoreV1NamespacedReplicationControllerList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedReplicationControllerList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -12306,10 +12306,6 @@ export interface Parameter$watchCoreV1NamespacedReplicationController { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the ReplicationController */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -12318,6 +12314,10 @@ export interface Parameter$watchCoreV1NamespacedReplicationController { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the ReplicationController */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedReplicationController$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -12345,8 +12345,6 @@ export interface Parameter$watchCoreV1NamespacedResourceQuotaList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -12355,6 +12353,8 @@ export interface Parameter$watchCoreV1NamespacedResourceQuotaList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedResourceQuotaList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -12382,10 +12382,6 @@ export interface Parameter$watchCoreV1NamespacedResourceQuota { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the ResourceQuota */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -12394,6 +12390,10 @@ export interface Parameter$watchCoreV1NamespacedResourceQuota { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the ResourceQuota */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedResourceQuota$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -12421,8 +12421,6 @@ export interface Parameter$watchCoreV1NamespacedSecretList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -12431,6 +12429,8 @@ export interface Parameter$watchCoreV1NamespacedSecretList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedSecretList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -12458,10 +12458,6 @@ export interface Parameter$watchCoreV1NamespacedSecret { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the Secret */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -12470,6 +12466,10 @@ export interface Parameter$watchCoreV1NamespacedSecret { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the Secret */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedSecret$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -12497,8 +12497,6 @@ export interface Parameter$watchCoreV1NamespacedServiceAccountList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -12507,6 +12505,8 @@ export interface Parameter$watchCoreV1NamespacedServiceAccountList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedServiceAccountList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -12534,10 +12534,6 @@ export interface Parameter$watchCoreV1NamespacedServiceAccount { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the ServiceAccount */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -12546,6 +12542,10 @@ export interface Parameter$watchCoreV1NamespacedServiceAccount { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the ServiceAccount */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedServiceAccount$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -12573,8 +12573,6 @@ export interface Parameter$watchCoreV1NamespacedServiceList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -12583,6 +12581,8 @@ export interface Parameter$watchCoreV1NamespacedServiceList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedServiceList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -12610,10 +12610,6 @@ export interface Parameter$watchCoreV1NamespacedService { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the Service */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -12622,6 +12618,10 @@ export interface Parameter$watchCoreV1NamespacedService { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the Service */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedService$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -12649,8 +12649,6 @@ export interface Parameter$watchCoreV1Namespace { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the Namespace */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -12659,6 +12657,8 @@ export interface Parameter$watchCoreV1Namespace { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the Namespace */ + name: string; } export interface Response$watchCoreV1Namespace$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -12721,8 +12721,6 @@ export interface Parameter$watchCoreV1Node { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the Node */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -12731,6 +12729,8 @@ export interface Parameter$watchCoreV1Node { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the Node */ + name: string; } export interface Response$watchCoreV1Node$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -12828,8 +12828,6 @@ export interface Parameter$watchCoreV1PersistentVolume { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the PersistentVolume */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -12838,6 +12836,8 @@ export interface Parameter$watchCoreV1PersistentVolume { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the PersistentVolume */ + name: string; } export interface Response$watchCoreV1PersistentVolume$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -13208,14 +13208,14 @@ export interface Response$deleteAdmissionregistrationV1CollectionMutatingWebhook "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readAdmissionregistrationV1MutatingWebhookConfiguration { - /** name of the MutatingWebhookConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the MutatingWebhookConfiguration */ + name: string; } export interface Response$readAdmissionregistrationV1MutatingWebhookConfiguration$Status$200 { "application/json": Schemas.io$k8s$api$admissionregistration$v1$MutatingWebhookConfiguration; @@ -13223,14 +13223,14 @@ export interface Response$readAdmissionregistrationV1MutatingWebhookConfiguratio "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1$MutatingWebhookConfiguration; } export interface Parameter$replaceAdmissionregistrationV1MutatingWebhookConfiguration { - /** name of the MutatingWebhookConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the MutatingWebhookConfiguration */ + name: string; } export type RequestBody$replaceAdmissionregistrationV1MutatingWebhookConfiguration = RequestBodies.io$k8s$api$admissionregistration$v1$MutatingWebhookConfiguration.Content; export interface Response$replaceAdmissionregistrationV1MutatingWebhookConfiguration$Status$200 { @@ -13244,8 +13244,6 @@ export interface Response$replaceAdmissionregistrationV1MutatingWebhookConfigura "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1$MutatingWebhookConfiguration; } export interface Parameter$deleteAdmissionregistrationV1MutatingWebhookConfiguration { - /** name of the MutatingWebhookConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -13256,6 +13254,8 @@ export interface Parameter$deleteAdmissionregistrationV1MutatingWebhookConfigura orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the MutatingWebhookConfiguration */ + name: string; } export type RequestBody$deleteAdmissionregistrationV1MutatingWebhookConfiguration = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAdmissionregistrationV1MutatingWebhookConfiguration$Status$200 { @@ -13269,8 +13269,6 @@ export interface Response$deleteAdmissionregistrationV1MutatingWebhookConfigurat "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchAdmissionregistrationV1MutatingWebhookConfiguration { - /** name of the MutatingWebhookConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -13279,6 +13277,8 @@ export interface Parameter$patchAdmissionregistrationV1MutatingWebhookConfigurat fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the MutatingWebhookConfiguration */ + name: string; } export type RequestBody$patchAdmissionregistrationV1MutatingWebhookConfiguration = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAdmissionregistrationV1MutatingWebhookConfiguration$Status$200 { @@ -13388,14 +13388,14 @@ export interface Response$deleteAdmissionregistrationV1CollectionValidatingWebho "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readAdmissionregistrationV1ValidatingWebhookConfiguration { - /** name of the ValidatingWebhookConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the ValidatingWebhookConfiguration */ + name: string; } export interface Response$readAdmissionregistrationV1ValidatingWebhookConfiguration$Status$200 { "application/json": Schemas.io$k8s$api$admissionregistration$v1$ValidatingWebhookConfiguration; @@ -13403,14 +13403,14 @@ export interface Response$readAdmissionregistrationV1ValidatingWebhookConfigurat "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1$ValidatingWebhookConfiguration; } export interface Parameter$replaceAdmissionregistrationV1ValidatingWebhookConfiguration { - /** name of the ValidatingWebhookConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the ValidatingWebhookConfiguration */ + name: string; } export type RequestBody$replaceAdmissionregistrationV1ValidatingWebhookConfiguration = RequestBodies.io$k8s$api$admissionregistration$v1$ValidatingWebhookConfiguration.Content; export interface Response$replaceAdmissionregistrationV1ValidatingWebhookConfiguration$Status$200 { @@ -13424,8 +13424,6 @@ export interface Response$replaceAdmissionregistrationV1ValidatingWebhookConfigu "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1$ValidatingWebhookConfiguration; } export interface Parameter$deleteAdmissionregistrationV1ValidatingWebhookConfiguration { - /** name of the ValidatingWebhookConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -13436,6 +13434,8 @@ export interface Parameter$deleteAdmissionregistrationV1ValidatingWebhookConfigu orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the ValidatingWebhookConfiguration */ + name: string; } export type RequestBody$deleteAdmissionregistrationV1ValidatingWebhookConfiguration = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAdmissionregistrationV1ValidatingWebhookConfiguration$Status$200 { @@ -13449,8 +13449,6 @@ export interface Response$deleteAdmissionregistrationV1ValidatingWebhookConfigur "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchAdmissionregistrationV1ValidatingWebhookConfiguration { - /** name of the ValidatingWebhookConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -13459,6 +13457,8 @@ export interface Parameter$patchAdmissionregistrationV1ValidatingWebhookConfigur fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the ValidatingWebhookConfiguration */ + name: string; } export type RequestBody$patchAdmissionregistrationV1ValidatingWebhookConfiguration = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAdmissionregistrationV1ValidatingWebhookConfiguration$Status$200 { @@ -13520,8 +13520,6 @@ export interface Parameter$watchAdmissionregistrationV1MutatingWebhookConfigurat * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the MutatingWebhookConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -13530,6 +13528,8 @@ export interface Parameter$watchAdmissionregistrationV1MutatingWebhookConfigurat timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the MutatingWebhookConfiguration */ + name: string; } export interface Response$watchAdmissionregistrationV1MutatingWebhookConfiguration$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -13592,8 +13592,6 @@ export interface Parameter$watchAdmissionregistrationV1ValidatingWebhookConfigur * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the ValidatingWebhookConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -13602,6 +13600,8 @@ export interface Parameter$watchAdmissionregistrationV1ValidatingWebhookConfigur timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the ValidatingWebhookConfiguration */ + name: string; } export interface Response$watchAdmissionregistrationV1ValidatingWebhookConfiguration$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -13717,14 +13717,14 @@ export interface Response$deleteAdmissionregistrationV1beta1CollectionMutatingWe "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readAdmissionregistrationV1beta1MutatingWebhookConfiguration { - /** name of the MutatingWebhookConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the MutatingWebhookConfiguration */ + name: string; } export interface Response$readAdmissionregistrationV1beta1MutatingWebhookConfiguration$Status$200 { "application/json": Schemas.io$k8s$api$admissionregistration$v1beta1$MutatingWebhookConfiguration; @@ -13732,14 +13732,14 @@ export interface Response$readAdmissionregistrationV1beta1MutatingWebhookConfigu "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1beta1$MutatingWebhookConfiguration; } export interface Parameter$replaceAdmissionregistrationV1beta1MutatingWebhookConfiguration { - /** name of the MutatingWebhookConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the MutatingWebhookConfiguration */ + name: string; } export type RequestBody$replaceAdmissionregistrationV1beta1MutatingWebhookConfiguration = RequestBodies.io$k8s$api$admissionregistration$v1beta1$MutatingWebhookConfiguration.Content; export interface Response$replaceAdmissionregistrationV1beta1MutatingWebhookConfiguration$Status$200 { @@ -13753,8 +13753,6 @@ export interface Response$replaceAdmissionregistrationV1beta1MutatingWebhookConf "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1beta1$MutatingWebhookConfiguration; } export interface Parameter$deleteAdmissionregistrationV1beta1MutatingWebhookConfiguration { - /** name of the MutatingWebhookConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -13765,6 +13763,8 @@ export interface Parameter$deleteAdmissionregistrationV1beta1MutatingWebhookConf orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the MutatingWebhookConfiguration */ + name: string; } export type RequestBody$deleteAdmissionregistrationV1beta1MutatingWebhookConfiguration = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAdmissionregistrationV1beta1MutatingWebhookConfiguration$Status$200 { @@ -13778,8 +13778,6 @@ export interface Response$deleteAdmissionregistrationV1beta1MutatingWebhookConfi "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchAdmissionregistrationV1beta1MutatingWebhookConfiguration { - /** name of the MutatingWebhookConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -13788,6 +13786,8 @@ export interface Parameter$patchAdmissionregistrationV1beta1MutatingWebhookConfi fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the MutatingWebhookConfiguration */ + name: string; } export type RequestBody$patchAdmissionregistrationV1beta1MutatingWebhookConfiguration = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAdmissionregistrationV1beta1MutatingWebhookConfiguration$Status$200 { @@ -13897,14 +13897,14 @@ export interface Response$deleteAdmissionregistrationV1beta1CollectionValidating "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readAdmissionregistrationV1beta1ValidatingWebhookConfiguration { - /** name of the ValidatingWebhookConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the ValidatingWebhookConfiguration */ + name: string; } export interface Response$readAdmissionregistrationV1beta1ValidatingWebhookConfiguration$Status$200 { "application/json": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingWebhookConfiguration; @@ -13912,14 +13912,14 @@ export interface Response$readAdmissionregistrationV1beta1ValidatingWebhookConfi "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingWebhookConfiguration; } export interface Parameter$replaceAdmissionregistrationV1beta1ValidatingWebhookConfiguration { - /** name of the ValidatingWebhookConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the ValidatingWebhookConfiguration */ + name: string; } export type RequestBody$replaceAdmissionregistrationV1beta1ValidatingWebhookConfiguration = RequestBodies.io$k8s$api$admissionregistration$v1beta1$ValidatingWebhookConfiguration.Content; export interface Response$replaceAdmissionregistrationV1beta1ValidatingWebhookConfiguration$Status$200 { @@ -13933,8 +13933,6 @@ export interface Response$replaceAdmissionregistrationV1beta1ValidatingWebhookCo "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingWebhookConfiguration; } export interface Parameter$deleteAdmissionregistrationV1beta1ValidatingWebhookConfiguration { - /** name of the ValidatingWebhookConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -13945,6 +13943,8 @@ export interface Parameter$deleteAdmissionregistrationV1beta1ValidatingWebhookCo orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the ValidatingWebhookConfiguration */ + name: string; } export type RequestBody$deleteAdmissionregistrationV1beta1ValidatingWebhookConfiguration = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAdmissionregistrationV1beta1ValidatingWebhookConfiguration$Status$200 { @@ -13958,8 +13958,6 @@ export interface Response$deleteAdmissionregistrationV1beta1ValidatingWebhookCon "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchAdmissionregistrationV1beta1ValidatingWebhookConfiguration { - /** name of the ValidatingWebhookConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -13968,6 +13966,8 @@ export interface Parameter$patchAdmissionregistrationV1beta1ValidatingWebhookCon fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the ValidatingWebhookConfiguration */ + name: string; } export type RequestBody$patchAdmissionregistrationV1beta1ValidatingWebhookConfiguration = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAdmissionregistrationV1beta1ValidatingWebhookConfiguration$Status$200 { @@ -14029,8 +14029,6 @@ export interface Parameter$watchAdmissionregistrationV1beta1MutatingWebhookConfi * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the MutatingWebhookConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -14039,6 +14037,8 @@ export interface Parameter$watchAdmissionregistrationV1beta1MutatingWebhookConfi timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the MutatingWebhookConfiguration */ + name: string; } export interface Response$watchAdmissionregistrationV1beta1MutatingWebhookConfiguration$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -14101,8 +14101,6 @@ export interface Parameter$watchAdmissionregistrationV1beta1ValidatingWebhookCon * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the ValidatingWebhookConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -14111,6 +14109,8 @@ export interface Parameter$watchAdmissionregistrationV1beta1ValidatingWebhookCon timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the ValidatingWebhookConfiguration */ + name: string; } export interface Response$watchAdmissionregistrationV1beta1ValidatingWebhookConfiguration$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -14231,14 +14231,14 @@ export interface Response$deleteApiextensionsV1CollectionCustomResourceDefinitio "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readApiextensionsV1CustomResourceDefinition { - /** name of the CustomResourceDefinition */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the CustomResourceDefinition */ + name: string; } export interface Response$readApiextensionsV1CustomResourceDefinition$Status$200 { "application/json": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; @@ -14246,14 +14246,14 @@ export interface Response$readApiextensionsV1CustomResourceDefinition$Status$200 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; } export interface Parameter$replaceApiextensionsV1CustomResourceDefinition { - /** name of the CustomResourceDefinition */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the CustomResourceDefinition */ + name: string; } export type RequestBody$replaceApiextensionsV1CustomResourceDefinition = RequestBodies.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition.Content; export interface Response$replaceApiextensionsV1CustomResourceDefinition$Status$200 { @@ -14267,8 +14267,6 @@ export interface Response$replaceApiextensionsV1CustomResourceDefinition$Status$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; } export interface Parameter$deleteApiextensionsV1CustomResourceDefinition { - /** name of the CustomResourceDefinition */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -14279,6 +14277,8 @@ export interface Parameter$deleteApiextensionsV1CustomResourceDefinition { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the CustomResourceDefinition */ + name: string; } export type RequestBody$deleteApiextensionsV1CustomResourceDefinition = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteApiextensionsV1CustomResourceDefinition$Status$200 { @@ -14292,8 +14292,6 @@ export interface Response$deleteApiextensionsV1CustomResourceDefinition$Status$2 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchApiextensionsV1CustomResourceDefinition { - /** name of the CustomResourceDefinition */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -14302,6 +14300,8 @@ export interface Parameter$patchApiextensionsV1CustomResourceDefinition { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the CustomResourceDefinition */ + name: string; } export type RequestBody$patchApiextensionsV1CustomResourceDefinition = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchApiextensionsV1CustomResourceDefinition$Status$200 { @@ -14310,10 +14310,10 @@ export interface Response$patchApiextensionsV1CustomResourceDefinition$Status$20 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; } export interface Parameter$readApiextensionsV1CustomResourceDefinitionStatus { - /** name of the CustomResourceDefinition */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** name of the CustomResourceDefinition */ + name: string; } export interface Response$readApiextensionsV1CustomResourceDefinitionStatus$Status$200 { "application/json": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; @@ -14321,14 +14321,14 @@ export interface Response$readApiextensionsV1CustomResourceDefinitionStatus$Stat "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; } export interface Parameter$replaceApiextensionsV1CustomResourceDefinitionStatus { - /** name of the CustomResourceDefinition */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the CustomResourceDefinition */ + name: string; } export type RequestBody$replaceApiextensionsV1CustomResourceDefinitionStatus = RequestBodies.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition.Content; export interface Response$replaceApiextensionsV1CustomResourceDefinitionStatus$Status$200 { @@ -14342,8 +14342,6 @@ export interface Response$replaceApiextensionsV1CustomResourceDefinitionStatus$S "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; } export interface Parameter$patchApiextensionsV1CustomResourceDefinitionStatus { - /** name of the CustomResourceDefinition */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -14352,6 +14350,8 @@ export interface Parameter$patchApiextensionsV1CustomResourceDefinitionStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the CustomResourceDefinition */ + name: string; } export type RequestBody$patchApiextensionsV1CustomResourceDefinitionStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchApiextensionsV1CustomResourceDefinitionStatus$Status$200 { @@ -14413,8 +14413,6 @@ export interface Parameter$watchApiextensionsV1CustomResourceDefinition { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the CustomResourceDefinition */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -14423,6 +14421,8 @@ export interface Parameter$watchApiextensionsV1CustomResourceDefinition { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the CustomResourceDefinition */ + name: string; } export interface Response$watchApiextensionsV1CustomResourceDefinition$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -14538,14 +14538,14 @@ export interface Response$deleteApiextensionsV1beta1CollectionCustomResourceDefi "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readApiextensionsV1beta1CustomResourceDefinition { - /** name of the CustomResourceDefinition */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the CustomResourceDefinition */ + name: string; } export interface Response$readApiextensionsV1beta1CustomResourceDefinition$Status$200 { "application/json": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceDefinition; @@ -14553,14 +14553,14 @@ export interface Response$readApiextensionsV1beta1CustomResourceDefinition$Statu "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceDefinition; } export interface Parameter$replaceApiextensionsV1beta1CustomResourceDefinition { - /** name of the CustomResourceDefinition */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the CustomResourceDefinition */ + name: string; } export type RequestBody$replaceApiextensionsV1beta1CustomResourceDefinition = RequestBodies.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceDefinition.Content; export interface Response$replaceApiextensionsV1beta1CustomResourceDefinition$Status$200 { @@ -14574,8 +14574,6 @@ export interface Response$replaceApiextensionsV1beta1CustomResourceDefinition$St "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceDefinition; } export interface Parameter$deleteApiextensionsV1beta1CustomResourceDefinition { - /** name of the CustomResourceDefinition */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -14586,6 +14584,8 @@ export interface Parameter$deleteApiextensionsV1beta1CustomResourceDefinition { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the CustomResourceDefinition */ + name: string; } export type RequestBody$deleteApiextensionsV1beta1CustomResourceDefinition = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteApiextensionsV1beta1CustomResourceDefinition$Status$200 { @@ -14599,8 +14599,6 @@ export interface Response$deleteApiextensionsV1beta1CustomResourceDefinition$Sta "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchApiextensionsV1beta1CustomResourceDefinition { - /** name of the CustomResourceDefinition */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -14609,6 +14607,8 @@ export interface Parameter$patchApiextensionsV1beta1CustomResourceDefinition { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the CustomResourceDefinition */ + name: string; } export type RequestBody$patchApiextensionsV1beta1CustomResourceDefinition = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchApiextensionsV1beta1CustomResourceDefinition$Status$200 { @@ -14617,10 +14617,10 @@ export interface Response$patchApiextensionsV1beta1CustomResourceDefinition$Stat "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceDefinition; } export interface Parameter$readApiextensionsV1beta1CustomResourceDefinitionStatus { - /** name of the CustomResourceDefinition */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** name of the CustomResourceDefinition */ + name: string; } export interface Response$readApiextensionsV1beta1CustomResourceDefinitionStatus$Status$200 { "application/json": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceDefinition; @@ -14628,14 +14628,14 @@ export interface Response$readApiextensionsV1beta1CustomResourceDefinitionStatus "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceDefinition; } export interface Parameter$replaceApiextensionsV1beta1CustomResourceDefinitionStatus { - /** name of the CustomResourceDefinition */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the CustomResourceDefinition */ + name: string; } export type RequestBody$replaceApiextensionsV1beta1CustomResourceDefinitionStatus = RequestBodies.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceDefinition.Content; export interface Response$replaceApiextensionsV1beta1CustomResourceDefinitionStatus$Status$200 { @@ -14649,8 +14649,6 @@ export interface Response$replaceApiextensionsV1beta1CustomResourceDefinitionSta "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceDefinition; } export interface Parameter$patchApiextensionsV1beta1CustomResourceDefinitionStatus { - /** name of the CustomResourceDefinition */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -14659,6 +14657,8 @@ export interface Parameter$patchApiextensionsV1beta1CustomResourceDefinitionStat fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the CustomResourceDefinition */ + name: string; } export type RequestBody$patchApiextensionsV1beta1CustomResourceDefinitionStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchApiextensionsV1beta1CustomResourceDefinitionStatus$Status$200 { @@ -14720,8 +14720,6 @@ export interface Parameter$watchApiextensionsV1beta1CustomResourceDefinition { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the CustomResourceDefinition */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -14730,6 +14728,8 @@ export interface Parameter$watchApiextensionsV1beta1CustomResourceDefinition { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the CustomResourceDefinition */ + name: string; } export interface Response$watchApiextensionsV1beta1CustomResourceDefinition$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -14850,14 +14850,14 @@ export interface Response$deleteApiregistrationV1CollectionAPIService$Status$200 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readApiregistrationV1APIService { - /** name of the APIService */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the APIService */ + name: string; } export interface Response$readApiregistrationV1APIService$Status$200 { "application/json": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; @@ -14865,14 +14865,14 @@ export interface Response$readApiregistrationV1APIService$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; } export interface Parameter$replaceApiregistrationV1APIService { - /** name of the APIService */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the APIService */ + name: string; } export type RequestBody$replaceApiregistrationV1APIService = RequestBodies.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService.Content; export interface Response$replaceApiregistrationV1APIService$Status$200 { @@ -14886,8 +14886,6 @@ export interface Response$replaceApiregistrationV1APIService$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; } export interface Parameter$deleteApiregistrationV1APIService { - /** name of the APIService */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -14898,6 +14896,8 @@ export interface Parameter$deleteApiregistrationV1APIService { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the APIService */ + name: string; } export type RequestBody$deleteApiregistrationV1APIService = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteApiregistrationV1APIService$Status$200 { @@ -14911,8 +14911,6 @@ export interface Response$deleteApiregistrationV1APIService$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchApiregistrationV1APIService { - /** name of the APIService */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -14921,6 +14919,8 @@ export interface Parameter$patchApiregistrationV1APIService { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the APIService */ + name: string; } export type RequestBody$patchApiregistrationV1APIService = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchApiregistrationV1APIService$Status$200 { @@ -14929,10 +14929,10 @@ export interface Response$patchApiregistrationV1APIService$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; } export interface Parameter$readApiregistrationV1APIServiceStatus { - /** name of the APIService */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** name of the APIService */ + name: string; } export interface Response$readApiregistrationV1APIServiceStatus$Status$200 { "application/json": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; @@ -14940,14 +14940,14 @@ export interface Response$readApiregistrationV1APIServiceStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; } export interface Parameter$replaceApiregistrationV1APIServiceStatus { - /** name of the APIService */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the APIService */ + name: string; } export type RequestBody$replaceApiregistrationV1APIServiceStatus = RequestBodies.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService.Content; export interface Response$replaceApiregistrationV1APIServiceStatus$Status$200 { @@ -14961,8 +14961,6 @@ export interface Response$replaceApiregistrationV1APIServiceStatus$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; } export interface Parameter$patchApiregistrationV1APIServiceStatus { - /** name of the APIService */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -14971,6 +14969,8 @@ export interface Parameter$patchApiregistrationV1APIServiceStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the APIService */ + name: string; } export type RequestBody$patchApiregistrationV1APIServiceStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchApiregistrationV1APIServiceStatus$Status$200 { @@ -15032,8 +15032,6 @@ export interface Parameter$watchApiregistrationV1APIService { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the APIService */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -15042,6 +15040,8 @@ export interface Parameter$watchApiregistrationV1APIService { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the APIService */ + name: string; } export interface Response$watchApiregistrationV1APIService$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -15157,14 +15157,14 @@ export interface Response$deleteApiregistrationV1beta1CollectionAPIService$Statu "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readApiregistrationV1beta1APIService { - /** name of the APIService */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the APIService */ + name: string; } export interface Response$readApiregistrationV1beta1APIService$Status$200 { "application/json": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1beta1$APIService; @@ -15172,14 +15172,14 @@ export interface Response$readApiregistrationV1beta1APIService$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1beta1$APIService; } export interface Parameter$replaceApiregistrationV1beta1APIService { - /** name of the APIService */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the APIService */ + name: string; } export type RequestBody$replaceApiregistrationV1beta1APIService = RequestBodies.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1beta1$APIService.Content; export interface Response$replaceApiregistrationV1beta1APIService$Status$200 { @@ -15193,8 +15193,6 @@ export interface Response$replaceApiregistrationV1beta1APIService$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1beta1$APIService; } export interface Parameter$deleteApiregistrationV1beta1APIService { - /** name of the APIService */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -15205,6 +15203,8 @@ export interface Parameter$deleteApiregistrationV1beta1APIService { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the APIService */ + name: string; } export type RequestBody$deleteApiregistrationV1beta1APIService = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteApiregistrationV1beta1APIService$Status$200 { @@ -15218,8 +15218,6 @@ export interface Response$deleteApiregistrationV1beta1APIService$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchApiregistrationV1beta1APIService { - /** name of the APIService */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -15228,6 +15226,8 @@ export interface Parameter$patchApiregistrationV1beta1APIService { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the APIService */ + name: string; } export type RequestBody$patchApiregistrationV1beta1APIService = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchApiregistrationV1beta1APIService$Status$200 { @@ -15236,10 +15236,10 @@ export interface Response$patchApiregistrationV1beta1APIService$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1beta1$APIService; } export interface Parameter$readApiregistrationV1beta1APIServiceStatus { - /** name of the APIService */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** name of the APIService */ + name: string; } export interface Response$readApiregistrationV1beta1APIServiceStatus$Status$200 { "application/json": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1beta1$APIService; @@ -15247,14 +15247,14 @@ export interface Response$readApiregistrationV1beta1APIServiceStatus$Status$200 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1beta1$APIService; } export interface Parameter$replaceApiregistrationV1beta1APIServiceStatus { - /** name of the APIService */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the APIService */ + name: string; } export type RequestBody$replaceApiregistrationV1beta1APIServiceStatus = RequestBodies.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1beta1$APIService.Content; export interface Response$replaceApiregistrationV1beta1APIServiceStatus$Status$200 { @@ -15268,8 +15268,6 @@ export interface Response$replaceApiregistrationV1beta1APIServiceStatus$Status$2 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1beta1$APIService; } export interface Parameter$patchApiregistrationV1beta1APIServiceStatus { - /** name of the APIService */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -15278,6 +15276,8 @@ export interface Parameter$patchApiregistrationV1beta1APIServiceStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the APIService */ + name: string; } export type RequestBody$patchApiregistrationV1beta1APIServiceStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchApiregistrationV1beta1APIServiceStatus$Status$200 { @@ -15339,8 +15339,6 @@ export interface Parameter$watchApiregistrationV1beta1APIService { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the APIService */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -15349,6 +15347,8 @@ export interface Parameter$watchApiregistrationV1beta1APIService { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the APIService */ + name: string; } export interface Response$watchApiregistrationV1beta1APIService$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -15473,8 +15473,6 @@ export interface Response$listAppsV1DeploymentForAllNamespaces$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$apps$v1$DeploymentList; } export interface Parameter$listAppsV1NamespacedControllerRevision { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -15501,6 +15499,8 @@ export interface Parameter$listAppsV1NamespacedControllerRevision { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listAppsV1NamespacedControllerRevision$Status$200 { "application/json": Schemas.io$k8s$api$apps$v1$ControllerRevisionList; @@ -15510,14 +15510,14 @@ export interface Response$listAppsV1NamespacedControllerRevision$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$apps$v1$ControllerRevisionList; } export interface Parameter$createAppsV1NamespacedControllerRevision { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createAppsV1NamespacedControllerRevision = RequestBodies.io$k8s$api$apps$v1$ControllerRevision.Content; export interface Response$createAppsV1NamespacedControllerRevision$Status$200 { @@ -15536,8 +15536,6 @@ export interface Response$createAppsV1NamespacedControllerRevision$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ControllerRevision; } export interface Parameter$deleteAppsV1CollectionNamespacedControllerRevision { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -15572,6 +15570,8 @@ export interface Parameter$deleteAppsV1CollectionNamespacedControllerRevision { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteAppsV1CollectionNamespacedControllerRevision = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAppsV1CollectionNamespacedControllerRevision$Status$200 { @@ -15580,16 +15580,16 @@ export interface Response$deleteAppsV1CollectionNamespacedControllerRevision$Sta "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readAppsV1NamespacedControllerRevision { - /** name of the ControllerRevision */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the ControllerRevision */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readAppsV1NamespacedControllerRevision$Status$200 { "application/json": Schemas.io$k8s$api$apps$v1$ControllerRevision; @@ -15597,16 +15597,16 @@ export interface Response$readAppsV1NamespacedControllerRevision$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ControllerRevision; } export interface Parameter$replaceAppsV1NamespacedControllerRevision { - /** name of the ControllerRevision */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the ControllerRevision */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceAppsV1NamespacedControllerRevision = RequestBodies.io$k8s$api$apps$v1$ControllerRevision.Content; export interface Response$replaceAppsV1NamespacedControllerRevision$Status$200 { @@ -15620,10 +15620,6 @@ export interface Response$replaceAppsV1NamespacedControllerRevision$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ControllerRevision; } export interface Parameter$deleteAppsV1NamespacedControllerRevision { - /** name of the ControllerRevision */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -15634,6 +15630,10 @@ export interface Parameter$deleteAppsV1NamespacedControllerRevision { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the ControllerRevision */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteAppsV1NamespacedControllerRevision = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAppsV1NamespacedControllerRevision$Status$200 { @@ -15647,10 +15647,6 @@ export interface Response$deleteAppsV1NamespacedControllerRevision$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchAppsV1NamespacedControllerRevision { - /** name of the ControllerRevision */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -15659,6 +15655,10 @@ export interface Parameter$patchAppsV1NamespacedControllerRevision { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the ControllerRevision */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchAppsV1NamespacedControllerRevision = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAppsV1NamespacedControllerRevision$Status$200 { @@ -15667,8 +15667,6 @@ export interface Response$patchAppsV1NamespacedControllerRevision$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ControllerRevision; } export interface Parameter$listAppsV1NamespacedDaemonSet { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -15695,6 +15693,8 @@ export interface Parameter$listAppsV1NamespacedDaemonSet { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listAppsV1NamespacedDaemonSet$Status$200 { "application/json": Schemas.io$k8s$api$apps$v1$DaemonSetList; @@ -15704,14 +15704,14 @@ export interface Response$listAppsV1NamespacedDaemonSet$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$apps$v1$DaemonSetList; } export interface Parameter$createAppsV1NamespacedDaemonSet { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createAppsV1NamespacedDaemonSet = RequestBodies.io$k8s$api$apps$v1$DaemonSet.Content; export interface Response$createAppsV1NamespacedDaemonSet$Status$200 { @@ -15730,8 +15730,6 @@ export interface Response$createAppsV1NamespacedDaemonSet$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$DaemonSet; } export interface Parameter$deleteAppsV1CollectionNamespacedDaemonSet { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -15766,6 +15764,8 @@ export interface Parameter$deleteAppsV1CollectionNamespacedDaemonSet { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteAppsV1CollectionNamespacedDaemonSet = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAppsV1CollectionNamespacedDaemonSet$Status$200 { @@ -15774,16 +15774,16 @@ export interface Response$deleteAppsV1CollectionNamespacedDaemonSet$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readAppsV1NamespacedDaemonSet { - /** name of the DaemonSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the DaemonSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readAppsV1NamespacedDaemonSet$Status$200 { "application/json": Schemas.io$k8s$api$apps$v1$DaemonSet; @@ -15791,16 +15791,16 @@ export interface Response$readAppsV1NamespacedDaemonSet$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$DaemonSet; } export interface Parameter$replaceAppsV1NamespacedDaemonSet { - /** name of the DaemonSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the DaemonSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceAppsV1NamespacedDaemonSet = RequestBodies.io$k8s$api$apps$v1$DaemonSet.Content; export interface Response$replaceAppsV1NamespacedDaemonSet$Status$200 { @@ -15814,10 +15814,6 @@ export interface Response$replaceAppsV1NamespacedDaemonSet$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$DaemonSet; } export interface Parameter$deleteAppsV1NamespacedDaemonSet { - /** name of the DaemonSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -15828,6 +15824,10 @@ export interface Parameter$deleteAppsV1NamespacedDaemonSet { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the DaemonSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteAppsV1NamespacedDaemonSet = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAppsV1NamespacedDaemonSet$Status$200 { @@ -15841,10 +15841,6 @@ export interface Response$deleteAppsV1NamespacedDaemonSet$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchAppsV1NamespacedDaemonSet { - /** name of the DaemonSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -15853,6 +15849,10 @@ export interface Parameter$patchAppsV1NamespacedDaemonSet { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the DaemonSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchAppsV1NamespacedDaemonSet = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAppsV1NamespacedDaemonSet$Status$200 { @@ -15861,12 +15861,12 @@ export interface Response$patchAppsV1NamespacedDaemonSet$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$DaemonSet; } export interface Parameter$readAppsV1NamespacedDaemonSetStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the DaemonSet */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readAppsV1NamespacedDaemonSetStatus$Status$200 { "application/json": Schemas.io$k8s$api$apps$v1$DaemonSet; @@ -15874,16 +15874,16 @@ export interface Response$readAppsV1NamespacedDaemonSetStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$DaemonSet; } export interface Parameter$replaceAppsV1NamespacedDaemonSetStatus { - /** name of the DaemonSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the DaemonSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceAppsV1NamespacedDaemonSetStatus = RequestBodies.io$k8s$api$apps$v1$DaemonSet.Content; export interface Response$replaceAppsV1NamespacedDaemonSetStatus$Status$200 { @@ -15897,10 +15897,6 @@ export interface Response$replaceAppsV1NamespacedDaemonSetStatus$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$DaemonSet; } export interface Parameter$patchAppsV1NamespacedDaemonSetStatus { - /** name of the DaemonSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -15909,6 +15905,10 @@ export interface Parameter$patchAppsV1NamespacedDaemonSetStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the DaemonSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchAppsV1NamespacedDaemonSetStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAppsV1NamespacedDaemonSetStatus$Status$200 { @@ -15917,8 +15917,6 @@ export interface Response$patchAppsV1NamespacedDaemonSetStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$DaemonSet; } export interface Parameter$listAppsV1NamespacedDeployment { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -15945,6 +15943,8 @@ export interface Parameter$listAppsV1NamespacedDeployment { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listAppsV1NamespacedDeployment$Status$200 { "application/json": Schemas.io$k8s$api$apps$v1$DeploymentList; @@ -15954,14 +15954,14 @@ export interface Response$listAppsV1NamespacedDeployment$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$apps$v1$DeploymentList; } export interface Parameter$createAppsV1NamespacedDeployment { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createAppsV1NamespacedDeployment = RequestBodies.io$k8s$api$apps$v1$Deployment.Content; export interface Response$createAppsV1NamespacedDeployment$Status$200 { @@ -15980,8 +15980,6 @@ export interface Response$createAppsV1NamespacedDeployment$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$Deployment; } export interface Parameter$deleteAppsV1CollectionNamespacedDeployment { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -16016,6 +16014,8 @@ export interface Parameter$deleteAppsV1CollectionNamespacedDeployment { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteAppsV1CollectionNamespacedDeployment = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAppsV1CollectionNamespacedDeployment$Status$200 { @@ -16024,16 +16024,16 @@ export interface Response$deleteAppsV1CollectionNamespacedDeployment$Status$200 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readAppsV1NamespacedDeployment { - /** name of the Deployment */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the Deployment */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readAppsV1NamespacedDeployment$Status$200 { "application/json": Schemas.io$k8s$api$apps$v1$Deployment; @@ -16041,16 +16041,16 @@ export interface Response$readAppsV1NamespacedDeployment$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$Deployment; } export interface Parameter$replaceAppsV1NamespacedDeployment { - /** name of the Deployment */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Deployment */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceAppsV1NamespacedDeployment = RequestBodies.io$k8s$api$apps$v1$Deployment.Content; export interface Response$replaceAppsV1NamespacedDeployment$Status$200 { @@ -16064,10 +16064,6 @@ export interface Response$replaceAppsV1NamespacedDeployment$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$Deployment; } export interface Parameter$deleteAppsV1NamespacedDeployment { - /** name of the Deployment */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -16078,6 +16074,10 @@ export interface Parameter$deleteAppsV1NamespacedDeployment { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the Deployment */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteAppsV1NamespacedDeployment = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAppsV1NamespacedDeployment$Status$200 { @@ -16091,10 +16091,6 @@ export interface Response$deleteAppsV1NamespacedDeployment$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchAppsV1NamespacedDeployment { - /** name of the Deployment */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -16103,6 +16099,10 @@ export interface Parameter$patchAppsV1NamespacedDeployment { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Deployment */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchAppsV1NamespacedDeployment = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAppsV1NamespacedDeployment$Status$200 { @@ -16111,12 +16111,12 @@ export interface Response$patchAppsV1NamespacedDeployment$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$Deployment; } export interface Parameter$readAppsV1NamespacedDeploymentScale { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the Scale */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readAppsV1NamespacedDeploymentScale$Status$200 { "application/json": Schemas.io$k8s$api$autoscaling$v1$Scale; @@ -16124,16 +16124,16 @@ export interface Response$readAppsV1NamespacedDeploymentScale$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; } export interface Parameter$replaceAppsV1NamespacedDeploymentScale { - /** name of the Scale */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Scale */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceAppsV1NamespacedDeploymentScale = RequestBodies.io$k8s$api$autoscaling$v1$Scale.Content; export interface Response$replaceAppsV1NamespacedDeploymentScale$Status$200 { @@ -16147,10 +16147,6 @@ export interface Response$replaceAppsV1NamespacedDeploymentScale$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; } export interface Parameter$patchAppsV1NamespacedDeploymentScale { - /** name of the Scale */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -16159,6 +16155,10 @@ export interface Parameter$patchAppsV1NamespacedDeploymentScale { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Scale */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchAppsV1NamespacedDeploymentScale = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAppsV1NamespacedDeploymentScale$Status$200 { @@ -16167,12 +16167,12 @@ export interface Response$patchAppsV1NamespacedDeploymentScale$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; } export interface Parameter$readAppsV1NamespacedDeploymentStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the Deployment */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readAppsV1NamespacedDeploymentStatus$Status$200 { "application/json": Schemas.io$k8s$api$apps$v1$Deployment; @@ -16180,16 +16180,16 @@ export interface Response$readAppsV1NamespacedDeploymentStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$Deployment; } export interface Parameter$replaceAppsV1NamespacedDeploymentStatus { - /** name of the Deployment */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Deployment */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceAppsV1NamespacedDeploymentStatus = RequestBodies.io$k8s$api$apps$v1$Deployment.Content; export interface Response$replaceAppsV1NamespacedDeploymentStatus$Status$200 { @@ -16203,10 +16203,6 @@ export interface Response$replaceAppsV1NamespacedDeploymentStatus$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$Deployment; } export interface Parameter$patchAppsV1NamespacedDeploymentStatus { - /** name of the Deployment */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -16215,6 +16211,10 @@ export interface Parameter$patchAppsV1NamespacedDeploymentStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Deployment */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchAppsV1NamespacedDeploymentStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAppsV1NamespacedDeploymentStatus$Status$200 { @@ -16223,8 +16223,6 @@ export interface Response$patchAppsV1NamespacedDeploymentStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$Deployment; } export interface Parameter$listAppsV1NamespacedReplicaSet { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -16251,6 +16249,8 @@ export interface Parameter$listAppsV1NamespacedReplicaSet { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listAppsV1NamespacedReplicaSet$Status$200 { "application/json": Schemas.io$k8s$api$apps$v1$ReplicaSetList; @@ -16260,14 +16260,14 @@ export interface Response$listAppsV1NamespacedReplicaSet$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$apps$v1$ReplicaSetList; } export interface Parameter$createAppsV1NamespacedReplicaSet { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createAppsV1NamespacedReplicaSet = RequestBodies.io$k8s$api$apps$v1$ReplicaSet.Content; export interface Response$createAppsV1NamespacedReplicaSet$Status$200 { @@ -16286,8 +16286,6 @@ export interface Response$createAppsV1NamespacedReplicaSet$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ReplicaSet; } export interface Parameter$deleteAppsV1CollectionNamespacedReplicaSet { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -16322,6 +16320,8 @@ export interface Parameter$deleteAppsV1CollectionNamespacedReplicaSet { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteAppsV1CollectionNamespacedReplicaSet = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAppsV1CollectionNamespacedReplicaSet$Status$200 { @@ -16330,16 +16330,16 @@ export interface Response$deleteAppsV1CollectionNamespacedReplicaSet$Status$200 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readAppsV1NamespacedReplicaSet { - /** name of the ReplicaSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the ReplicaSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readAppsV1NamespacedReplicaSet$Status$200 { "application/json": Schemas.io$k8s$api$apps$v1$ReplicaSet; @@ -16347,16 +16347,16 @@ export interface Response$readAppsV1NamespacedReplicaSet$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ReplicaSet; } export interface Parameter$replaceAppsV1NamespacedReplicaSet { - /** name of the ReplicaSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the ReplicaSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceAppsV1NamespacedReplicaSet = RequestBodies.io$k8s$api$apps$v1$ReplicaSet.Content; export interface Response$replaceAppsV1NamespacedReplicaSet$Status$200 { @@ -16370,10 +16370,6 @@ export interface Response$replaceAppsV1NamespacedReplicaSet$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ReplicaSet; } export interface Parameter$deleteAppsV1NamespacedReplicaSet { - /** name of the ReplicaSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -16384,6 +16380,10 @@ export interface Parameter$deleteAppsV1NamespacedReplicaSet { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the ReplicaSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteAppsV1NamespacedReplicaSet = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAppsV1NamespacedReplicaSet$Status$200 { @@ -16397,10 +16397,6 @@ export interface Response$deleteAppsV1NamespacedReplicaSet$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchAppsV1NamespacedReplicaSet { - /** name of the ReplicaSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -16409,6 +16405,10 @@ export interface Parameter$patchAppsV1NamespacedReplicaSet { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the ReplicaSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchAppsV1NamespacedReplicaSet = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAppsV1NamespacedReplicaSet$Status$200 { @@ -16417,12 +16417,12 @@ export interface Response$patchAppsV1NamespacedReplicaSet$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ReplicaSet; } export interface Parameter$readAppsV1NamespacedReplicaSetScale { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the Scale */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readAppsV1NamespacedReplicaSetScale$Status$200 { "application/json": Schemas.io$k8s$api$autoscaling$v1$Scale; @@ -16430,16 +16430,16 @@ export interface Response$readAppsV1NamespacedReplicaSetScale$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; } export interface Parameter$replaceAppsV1NamespacedReplicaSetScale { - /** name of the Scale */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Scale */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceAppsV1NamespacedReplicaSetScale = RequestBodies.io$k8s$api$autoscaling$v1$Scale.Content; export interface Response$replaceAppsV1NamespacedReplicaSetScale$Status$200 { @@ -16453,10 +16453,6 @@ export interface Response$replaceAppsV1NamespacedReplicaSetScale$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; } export interface Parameter$patchAppsV1NamespacedReplicaSetScale { - /** name of the Scale */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -16465,6 +16461,10 @@ export interface Parameter$patchAppsV1NamespacedReplicaSetScale { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Scale */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchAppsV1NamespacedReplicaSetScale = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAppsV1NamespacedReplicaSetScale$Status$200 { @@ -16473,12 +16473,12 @@ export interface Response$patchAppsV1NamespacedReplicaSetScale$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; } export interface Parameter$readAppsV1NamespacedReplicaSetStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the ReplicaSet */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readAppsV1NamespacedReplicaSetStatus$Status$200 { "application/json": Schemas.io$k8s$api$apps$v1$ReplicaSet; @@ -16486,16 +16486,16 @@ export interface Response$readAppsV1NamespacedReplicaSetStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ReplicaSet; } export interface Parameter$replaceAppsV1NamespacedReplicaSetStatus { - /** name of the ReplicaSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the ReplicaSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceAppsV1NamespacedReplicaSetStatus = RequestBodies.io$k8s$api$apps$v1$ReplicaSet.Content; export interface Response$replaceAppsV1NamespacedReplicaSetStatus$Status$200 { @@ -16509,10 +16509,6 @@ export interface Response$replaceAppsV1NamespacedReplicaSetStatus$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ReplicaSet; } export interface Parameter$patchAppsV1NamespacedReplicaSetStatus { - /** name of the ReplicaSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -16521,6 +16517,10 @@ export interface Parameter$patchAppsV1NamespacedReplicaSetStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the ReplicaSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchAppsV1NamespacedReplicaSetStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAppsV1NamespacedReplicaSetStatus$Status$200 { @@ -16529,8 +16529,6 @@ export interface Response$patchAppsV1NamespacedReplicaSetStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ReplicaSet; } export interface Parameter$listAppsV1NamespacedStatefulSet { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -16557,6 +16555,8 @@ export interface Parameter$listAppsV1NamespacedStatefulSet { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listAppsV1NamespacedStatefulSet$Status$200 { "application/json": Schemas.io$k8s$api$apps$v1$StatefulSetList; @@ -16566,14 +16566,14 @@ export interface Response$listAppsV1NamespacedStatefulSet$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$apps$v1$StatefulSetList; } export interface Parameter$createAppsV1NamespacedStatefulSet { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createAppsV1NamespacedStatefulSet = RequestBodies.io$k8s$api$apps$v1$StatefulSet.Content; export interface Response$createAppsV1NamespacedStatefulSet$Status$200 { @@ -16592,8 +16592,6 @@ export interface Response$createAppsV1NamespacedStatefulSet$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$StatefulSet; } export interface Parameter$deleteAppsV1CollectionNamespacedStatefulSet { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -16628,6 +16626,8 @@ export interface Parameter$deleteAppsV1CollectionNamespacedStatefulSet { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteAppsV1CollectionNamespacedStatefulSet = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAppsV1CollectionNamespacedStatefulSet$Status$200 { @@ -16636,16 +16636,16 @@ export interface Response$deleteAppsV1CollectionNamespacedStatefulSet$Status$200 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readAppsV1NamespacedStatefulSet { - /** name of the StatefulSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the StatefulSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readAppsV1NamespacedStatefulSet$Status$200 { "application/json": Schemas.io$k8s$api$apps$v1$StatefulSet; @@ -16653,16 +16653,16 @@ export interface Response$readAppsV1NamespacedStatefulSet$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$StatefulSet; } export interface Parameter$replaceAppsV1NamespacedStatefulSet { - /** name of the StatefulSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the StatefulSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceAppsV1NamespacedStatefulSet = RequestBodies.io$k8s$api$apps$v1$StatefulSet.Content; export interface Response$replaceAppsV1NamespacedStatefulSet$Status$200 { @@ -16676,10 +16676,6 @@ export interface Response$replaceAppsV1NamespacedStatefulSet$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$StatefulSet; } export interface Parameter$deleteAppsV1NamespacedStatefulSet { - /** name of the StatefulSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -16690,6 +16686,10 @@ export interface Parameter$deleteAppsV1NamespacedStatefulSet { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the StatefulSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteAppsV1NamespacedStatefulSet = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAppsV1NamespacedStatefulSet$Status$200 { @@ -16703,10 +16703,6 @@ export interface Response$deleteAppsV1NamespacedStatefulSet$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchAppsV1NamespacedStatefulSet { - /** name of the StatefulSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -16715,6 +16711,10 @@ export interface Parameter$patchAppsV1NamespacedStatefulSet { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the StatefulSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchAppsV1NamespacedStatefulSet = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAppsV1NamespacedStatefulSet$Status$200 { @@ -16723,12 +16723,12 @@ export interface Response$patchAppsV1NamespacedStatefulSet$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$StatefulSet; } export interface Parameter$readAppsV1NamespacedStatefulSetScale { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the Scale */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readAppsV1NamespacedStatefulSetScale$Status$200 { "application/json": Schemas.io$k8s$api$autoscaling$v1$Scale; @@ -16736,16 +16736,16 @@ export interface Response$readAppsV1NamespacedStatefulSetScale$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; } export interface Parameter$replaceAppsV1NamespacedStatefulSetScale { - /** name of the Scale */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Scale */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceAppsV1NamespacedStatefulSetScale = RequestBodies.io$k8s$api$autoscaling$v1$Scale.Content; export interface Response$replaceAppsV1NamespacedStatefulSetScale$Status$200 { @@ -16759,10 +16759,6 @@ export interface Response$replaceAppsV1NamespacedStatefulSetScale$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; } export interface Parameter$patchAppsV1NamespacedStatefulSetScale { - /** name of the Scale */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -16771,6 +16767,10 @@ export interface Parameter$patchAppsV1NamespacedStatefulSetScale { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Scale */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchAppsV1NamespacedStatefulSetScale = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAppsV1NamespacedStatefulSetScale$Status$200 { @@ -16779,12 +16779,12 @@ export interface Response$patchAppsV1NamespacedStatefulSetScale$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; } export interface Parameter$readAppsV1NamespacedStatefulSetStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the StatefulSet */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readAppsV1NamespacedStatefulSetStatus$Status$200 { "application/json": Schemas.io$k8s$api$apps$v1$StatefulSet; @@ -16792,16 +16792,16 @@ export interface Response$readAppsV1NamespacedStatefulSetStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$StatefulSet; } export interface Parameter$replaceAppsV1NamespacedStatefulSetStatus { - /** name of the StatefulSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the StatefulSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceAppsV1NamespacedStatefulSetStatus = RequestBodies.io$k8s$api$apps$v1$StatefulSet.Content; export interface Response$replaceAppsV1NamespacedStatefulSetStatus$Status$200 { @@ -16815,10 +16815,6 @@ export interface Response$replaceAppsV1NamespacedStatefulSetStatus$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$StatefulSet; } export interface Parameter$patchAppsV1NamespacedStatefulSetStatus { - /** name of the StatefulSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -16827,6 +16823,10 @@ export interface Parameter$patchAppsV1NamespacedStatefulSetStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the StatefulSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchAppsV1NamespacedStatefulSetStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAppsV1NamespacedStatefulSetStatus$Status$200 { @@ -17028,8 +17028,6 @@ export interface Parameter$watchAppsV1NamespacedControllerRevisionList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -17038,6 +17036,8 @@ export interface Parameter$watchAppsV1NamespacedControllerRevisionList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchAppsV1NamespacedControllerRevisionList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -17065,10 +17065,6 @@ export interface Parameter$watchAppsV1NamespacedControllerRevision { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the ControllerRevision */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -17077,6 +17073,10 @@ export interface Parameter$watchAppsV1NamespacedControllerRevision { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the ControllerRevision */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchAppsV1NamespacedControllerRevision$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -17104,8 +17104,6 @@ export interface Parameter$watchAppsV1NamespacedDaemonSetList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -17114,6 +17112,8 @@ export interface Parameter$watchAppsV1NamespacedDaemonSetList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchAppsV1NamespacedDaemonSetList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -17141,10 +17141,6 @@ export interface Parameter$watchAppsV1NamespacedDaemonSet { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the DaemonSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -17153,6 +17149,10 @@ export interface Parameter$watchAppsV1NamespacedDaemonSet { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the DaemonSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchAppsV1NamespacedDaemonSet$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -17180,8 +17180,6 @@ export interface Parameter$watchAppsV1NamespacedDeploymentList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -17190,6 +17188,8 @@ export interface Parameter$watchAppsV1NamespacedDeploymentList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchAppsV1NamespacedDeploymentList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -17217,10 +17217,6 @@ export interface Parameter$watchAppsV1NamespacedDeployment { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the Deployment */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -17229,6 +17225,10 @@ export interface Parameter$watchAppsV1NamespacedDeployment { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the Deployment */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchAppsV1NamespacedDeployment$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -17256,8 +17256,6 @@ export interface Parameter$watchAppsV1NamespacedReplicaSetList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -17266,6 +17264,8 @@ export interface Parameter$watchAppsV1NamespacedReplicaSetList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchAppsV1NamespacedReplicaSetList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -17293,10 +17293,6 @@ export interface Parameter$watchAppsV1NamespacedReplicaSet { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the ReplicaSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -17305,6 +17301,10 @@ export interface Parameter$watchAppsV1NamespacedReplicaSet { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the ReplicaSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchAppsV1NamespacedReplicaSet$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -17332,8 +17332,6 @@ export interface Parameter$watchAppsV1NamespacedStatefulSetList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -17342,6 +17340,8 @@ export interface Parameter$watchAppsV1NamespacedStatefulSetList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchAppsV1NamespacedStatefulSetList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -17369,10 +17369,6 @@ export interface Parameter$watchAppsV1NamespacedStatefulSet { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the StatefulSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -17381,6 +17377,10 @@ export interface Parameter$watchAppsV1NamespacedStatefulSet { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the StatefulSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchAppsV1NamespacedStatefulSet$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -17571,14 +17571,14 @@ export interface Response$deleteAuditregistrationV1alpha1CollectionAuditSink$Sta "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readAuditregistrationV1alpha1AuditSink { - /** name of the AuditSink */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the AuditSink */ + name: string; } export interface Response$readAuditregistrationV1alpha1AuditSink$Status$200 { "application/json": Schemas.io$k8s$api$auditregistration$v1alpha1$AuditSink; @@ -17586,14 +17586,14 @@ export interface Response$readAuditregistrationV1alpha1AuditSink$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$auditregistration$v1alpha1$AuditSink; } export interface Parameter$replaceAuditregistrationV1alpha1AuditSink { - /** name of the AuditSink */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the AuditSink */ + name: string; } export type RequestBody$replaceAuditregistrationV1alpha1AuditSink = RequestBodies.io$k8s$api$auditregistration$v1alpha1$AuditSink.Content; export interface Response$replaceAuditregistrationV1alpha1AuditSink$Status$200 { @@ -17607,8 +17607,6 @@ export interface Response$replaceAuditregistrationV1alpha1AuditSink$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$auditregistration$v1alpha1$AuditSink; } export interface Parameter$deleteAuditregistrationV1alpha1AuditSink { - /** name of the AuditSink */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -17619,6 +17617,8 @@ export interface Parameter$deleteAuditregistrationV1alpha1AuditSink { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the AuditSink */ + name: string; } export type RequestBody$deleteAuditregistrationV1alpha1AuditSink = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAuditregistrationV1alpha1AuditSink$Status$200 { @@ -17632,8 +17632,6 @@ export interface Response$deleteAuditregistrationV1alpha1AuditSink$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchAuditregistrationV1alpha1AuditSink { - /** name of the AuditSink */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -17642,6 +17640,8 @@ export interface Parameter$patchAuditregistrationV1alpha1AuditSink { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the AuditSink */ + name: string; } export type RequestBody$patchAuditregistrationV1alpha1AuditSink = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAuditregistrationV1alpha1AuditSink$Status$200 { @@ -17703,8 +17703,6 @@ export interface Parameter$watchAuditregistrationV1alpha1AuditSink { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the AuditSink */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -17713,6 +17711,8 @@ export interface Parameter$watchAuditregistrationV1alpha1AuditSink { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the AuditSink */ + name: string; } export interface Response$watchAuditregistrationV1alpha1AuditSink$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -17803,10 +17803,10 @@ export interface Parameter$createAuthorizationV1NamespacedLocalSubjectAccessRevi dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface RequestBody$createAuthorizationV1NamespacedLocalSubjectAccessReview { "*/*": Schemas.io$k8s$api$authorization$v1$LocalSubjectAccessReview; @@ -17914,10 +17914,10 @@ export interface Parameter$createAuthorizationV1beta1NamespacedLocalSubjectAcces dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface RequestBody$createAuthorizationV1beta1NamespacedLocalSubjectAccessReview { "*/*": Schemas.io$k8s$api$authorization$v1beta1$LocalSubjectAccessReview; @@ -18061,8 +18061,6 @@ export interface Response$listAutoscalingV1HorizontalPodAutoscalerForAllNamespac "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscalerList; } export interface Parameter$listAutoscalingV1NamespacedHorizontalPodAutoscaler { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -18089,6 +18087,8 @@ export interface Parameter$listAutoscalingV1NamespacedHorizontalPodAutoscaler { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 { "application/json": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscalerList; @@ -18098,14 +18098,14 @@ export interface Response$listAutoscalingV1NamespacedHorizontalPodAutoscaler$Sta "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscalerList; } export interface Parameter$createAutoscalingV1NamespacedHorizontalPodAutoscaler { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createAutoscalingV1NamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler.Content; export interface Response$createAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 { @@ -18124,8 +18124,6 @@ export interface Response$createAutoscalingV1NamespacedHorizontalPodAutoscaler$S "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; } export interface Parameter$deleteAutoscalingV1CollectionNamespacedHorizontalPodAutoscaler { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -18160,6 +18158,8 @@ export interface Parameter$deleteAutoscalingV1CollectionNamespacedHorizontalPodA timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteAutoscalingV1CollectionNamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAutoscalingV1CollectionNamespacedHorizontalPodAutoscaler$Status$200 { @@ -18168,16 +18168,16 @@ export interface Response$deleteAutoscalingV1CollectionNamespacedHorizontalPodAu "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readAutoscalingV1NamespacedHorizontalPodAutoscaler { - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 { "application/json": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; @@ -18185,16 +18185,16 @@ export interface Response$readAutoscalingV1NamespacedHorizontalPodAutoscaler$Sta "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; } export interface Parameter$replaceAutoscalingV1NamespacedHorizontalPodAutoscaler { - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceAutoscalingV1NamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler.Content; export interface Response$replaceAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 { @@ -18208,10 +18208,6 @@ export interface Response$replaceAutoscalingV1NamespacedHorizontalPodAutoscaler$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; } export interface Parameter$deleteAutoscalingV1NamespacedHorizontalPodAutoscaler { - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -18222,6 +18218,10 @@ export interface Parameter$deleteAutoscalingV1NamespacedHorizontalPodAutoscaler orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteAutoscalingV1NamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 { @@ -18235,10 +18235,6 @@ export interface Response$deleteAutoscalingV1NamespacedHorizontalPodAutoscaler$S "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchAutoscalingV1NamespacedHorizontalPodAutoscaler { - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -18247,6 +18243,10 @@ export interface Parameter$patchAutoscalingV1NamespacedHorizontalPodAutoscaler { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchAutoscalingV1NamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 { @@ -18255,12 +18255,12 @@ export interface Response$patchAutoscalingV1NamespacedHorizontalPodAutoscaler$St "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; } export interface Parameter$readAutoscalingV1NamespacedHorizontalPodAutoscalerStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the HorizontalPodAutoscaler */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readAutoscalingV1NamespacedHorizontalPodAutoscalerStatus$Status$200 { "application/json": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; @@ -18268,16 +18268,16 @@ export interface Response$readAutoscalingV1NamespacedHorizontalPodAutoscalerStat "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; } export interface Parameter$replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus { - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus = RequestBodies.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler.Content; export interface Response$replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus$Status$200 { @@ -18291,10 +18291,6 @@ export interface Response$replaceAutoscalingV1NamespacedHorizontalPodAutoscalerS "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; } export interface Parameter$patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus { - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -18303,6 +18299,10 @@ export interface Parameter$patchAutoscalingV1NamespacedHorizontalPodAutoscalerSt fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus$Status$200 { @@ -18364,8 +18364,6 @@ export interface Parameter$watchAutoscalingV1NamespacedHorizontalPodAutoscalerLi * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -18374,6 +18372,8 @@ export interface Parameter$watchAutoscalingV1NamespacedHorizontalPodAutoscalerLi timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchAutoscalingV1NamespacedHorizontalPodAutoscalerList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -18401,10 +18401,6 @@ export interface Parameter$watchAutoscalingV1NamespacedHorizontalPodAutoscaler { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -18413,6 +18409,10 @@ export interface Parameter$watchAutoscalingV1NamespacedHorizontalPodAutoscaler { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -18462,8 +18462,6 @@ export interface Response$listAutoscalingV2beta1HorizontalPodAutoscalerForAllNam "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$autoscaling$v2beta1$HorizontalPodAutoscalerList; } export interface Parameter$listAutoscalingV2beta1NamespacedHorizontalPodAutoscaler { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -18490,6 +18488,8 @@ export interface Parameter$listAutoscalingV2beta1NamespacedHorizontalPodAutoscal timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listAutoscalingV2beta1NamespacedHorizontalPodAutoscaler$Status$200 { "application/json": Schemas.io$k8s$api$autoscaling$v2beta1$HorizontalPodAutoscalerList; @@ -18499,14 +18499,14 @@ export interface Response$listAutoscalingV2beta1NamespacedHorizontalPodAutoscale "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$autoscaling$v2beta1$HorizontalPodAutoscalerList; } export interface Parameter$createAutoscalingV2beta1NamespacedHorizontalPodAutoscaler { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createAutoscalingV2beta1NamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$api$autoscaling$v2beta1$HorizontalPodAutoscaler.Content; export interface Response$createAutoscalingV2beta1NamespacedHorizontalPodAutoscaler$Status$200 { @@ -18525,8 +18525,6 @@ export interface Response$createAutoscalingV2beta1NamespacedHorizontalPodAutosca "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2beta1$HorizontalPodAutoscaler; } export interface Parameter$deleteAutoscalingV2beta1CollectionNamespacedHorizontalPodAutoscaler { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -18561,6 +18559,8 @@ export interface Parameter$deleteAutoscalingV2beta1CollectionNamespacedHorizonta timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteAutoscalingV2beta1CollectionNamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAutoscalingV2beta1CollectionNamespacedHorizontalPodAutoscaler$Status$200 { @@ -18569,16 +18569,16 @@ export interface Response$deleteAutoscalingV2beta1CollectionNamespacedHorizontal "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readAutoscalingV2beta1NamespacedHorizontalPodAutoscaler { - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readAutoscalingV2beta1NamespacedHorizontalPodAutoscaler$Status$200 { "application/json": Schemas.io$k8s$api$autoscaling$v2beta1$HorizontalPodAutoscaler; @@ -18586,16 +18586,16 @@ export interface Response$readAutoscalingV2beta1NamespacedHorizontalPodAutoscale "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2beta1$HorizontalPodAutoscaler; } export interface Parameter$replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscaler { - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$api$autoscaling$v2beta1$HorizontalPodAutoscaler.Content; export interface Response$replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscaler$Status$200 { @@ -18609,10 +18609,6 @@ export interface Response$replaceAutoscalingV2beta1NamespacedHorizontalPodAutosc "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2beta1$HorizontalPodAutoscaler; } export interface Parameter$deleteAutoscalingV2beta1NamespacedHorizontalPodAutoscaler { - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -18623,6 +18619,10 @@ export interface Parameter$deleteAutoscalingV2beta1NamespacedHorizontalPodAutosc orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteAutoscalingV2beta1NamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAutoscalingV2beta1NamespacedHorizontalPodAutoscaler$Status$200 { @@ -18636,10 +18636,6 @@ export interface Response$deleteAutoscalingV2beta1NamespacedHorizontalPodAutosca "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler { - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -18648,6 +18644,10 @@ export interface Parameter$patchAutoscalingV2beta1NamespacedHorizontalPodAutosca fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler$Status$200 { @@ -18656,12 +18656,12 @@ export interface Response$patchAutoscalingV2beta1NamespacedHorizontalPodAutoscal "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2beta1$HorizontalPodAutoscaler; } export interface Parameter$readAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the HorizontalPodAutoscaler */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus$Status$200 { "application/json": Schemas.io$k8s$api$autoscaling$v2beta1$HorizontalPodAutoscaler; @@ -18669,16 +18669,16 @@ export interface Response$readAutoscalingV2beta1NamespacedHorizontalPodAutoscale "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2beta1$HorizontalPodAutoscaler; } export interface Parameter$replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus { - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus = RequestBodies.io$k8s$api$autoscaling$v2beta1$HorizontalPodAutoscaler.Content; export interface Response$replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus$Status$200 { @@ -18692,10 +18692,6 @@ export interface Response$replaceAutoscalingV2beta1NamespacedHorizontalPodAutosc "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2beta1$HorizontalPodAutoscaler; } export interface Parameter$patchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus { - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -18704,6 +18700,10 @@ export interface Parameter$patchAutoscalingV2beta1NamespacedHorizontalPodAutosca fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus$Status$200 { @@ -18765,8 +18765,6 @@ export interface Parameter$watchAutoscalingV2beta1NamespacedHorizontalPodAutosca * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -18775,6 +18773,8 @@ export interface Parameter$watchAutoscalingV2beta1NamespacedHorizontalPodAutosca timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -18802,10 +18802,6 @@ export interface Parameter$watchAutoscalingV2beta1NamespacedHorizontalPodAutosca * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -18814,6 +18810,10 @@ export interface Parameter$watchAutoscalingV2beta1NamespacedHorizontalPodAutosca timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -18863,8 +18863,6 @@ export interface Response$listAutoscalingV2beta2HorizontalPodAutoscalerForAllNam "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$autoscaling$v2beta2$HorizontalPodAutoscalerList; } export interface Parameter$listAutoscalingV2beta2NamespacedHorizontalPodAutoscaler { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -18891,6 +18889,8 @@ export interface Parameter$listAutoscalingV2beta2NamespacedHorizontalPodAutoscal timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listAutoscalingV2beta2NamespacedHorizontalPodAutoscaler$Status$200 { "application/json": Schemas.io$k8s$api$autoscaling$v2beta2$HorizontalPodAutoscalerList; @@ -18900,14 +18900,14 @@ export interface Response$listAutoscalingV2beta2NamespacedHorizontalPodAutoscale "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$autoscaling$v2beta2$HorizontalPodAutoscalerList; } export interface Parameter$createAutoscalingV2beta2NamespacedHorizontalPodAutoscaler { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createAutoscalingV2beta2NamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$api$autoscaling$v2beta2$HorizontalPodAutoscaler.Content; export interface Response$createAutoscalingV2beta2NamespacedHorizontalPodAutoscaler$Status$200 { @@ -18926,8 +18926,6 @@ export interface Response$createAutoscalingV2beta2NamespacedHorizontalPodAutosca "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2beta2$HorizontalPodAutoscaler; } export interface Parameter$deleteAutoscalingV2beta2CollectionNamespacedHorizontalPodAutoscaler { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -18962,6 +18960,8 @@ export interface Parameter$deleteAutoscalingV2beta2CollectionNamespacedHorizonta timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteAutoscalingV2beta2CollectionNamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAutoscalingV2beta2CollectionNamespacedHorizontalPodAutoscaler$Status$200 { @@ -18970,16 +18970,16 @@ export interface Response$deleteAutoscalingV2beta2CollectionNamespacedHorizontal "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readAutoscalingV2beta2NamespacedHorizontalPodAutoscaler { - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readAutoscalingV2beta2NamespacedHorizontalPodAutoscaler$Status$200 { "application/json": Schemas.io$k8s$api$autoscaling$v2beta2$HorizontalPodAutoscaler; @@ -18987,16 +18987,16 @@ export interface Response$readAutoscalingV2beta2NamespacedHorizontalPodAutoscale "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2beta2$HorizontalPodAutoscaler; } export interface Parameter$replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscaler { - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$api$autoscaling$v2beta2$HorizontalPodAutoscaler.Content; export interface Response$replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscaler$Status$200 { @@ -19010,10 +19010,6 @@ export interface Response$replaceAutoscalingV2beta2NamespacedHorizontalPodAutosc "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2beta2$HorizontalPodAutoscaler; } export interface Parameter$deleteAutoscalingV2beta2NamespacedHorizontalPodAutoscaler { - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -19024,6 +19020,10 @@ export interface Parameter$deleteAutoscalingV2beta2NamespacedHorizontalPodAutosc orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteAutoscalingV2beta2NamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAutoscalingV2beta2NamespacedHorizontalPodAutoscaler$Status$200 { @@ -19037,10 +19037,6 @@ export interface Response$deleteAutoscalingV2beta2NamespacedHorizontalPodAutosca "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler { - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -19049,6 +19045,10 @@ export interface Parameter$patchAutoscalingV2beta2NamespacedHorizontalPodAutosca fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler$Status$200 { @@ -19057,12 +19057,12 @@ export interface Response$patchAutoscalingV2beta2NamespacedHorizontalPodAutoscal "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2beta2$HorizontalPodAutoscaler; } export interface Parameter$readAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the HorizontalPodAutoscaler */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus$Status$200 { "application/json": Schemas.io$k8s$api$autoscaling$v2beta2$HorizontalPodAutoscaler; @@ -19070,16 +19070,16 @@ export interface Response$readAutoscalingV2beta2NamespacedHorizontalPodAutoscale "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2beta2$HorizontalPodAutoscaler; } export interface Parameter$replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus { - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus = RequestBodies.io$k8s$api$autoscaling$v2beta2$HorizontalPodAutoscaler.Content; export interface Response$replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus$Status$200 { @@ -19093,10 +19093,6 @@ export interface Response$replaceAutoscalingV2beta2NamespacedHorizontalPodAutosc "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2beta2$HorizontalPodAutoscaler; } export interface Parameter$patchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus { - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -19105,6 +19101,10 @@ export interface Parameter$patchAutoscalingV2beta2NamespacedHorizontalPodAutosca fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus$Status$200 { @@ -19166,8 +19166,6 @@ export interface Parameter$watchAutoscalingV2beta2NamespacedHorizontalPodAutosca * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -19176,6 +19174,8 @@ export interface Parameter$watchAutoscalingV2beta2NamespacedHorizontalPodAutosca timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -19203,10 +19203,6 @@ export interface Parameter$watchAutoscalingV2beta2NamespacedHorizontalPodAutosca * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -19215,6 +19211,10 @@ export interface Parameter$watchAutoscalingV2beta2NamespacedHorizontalPodAutosca timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -19269,8 +19269,6 @@ export interface Response$listBatchV1JobForAllNamespaces$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$batch$v1$JobList; } export interface Parameter$listBatchV1NamespacedJob { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -19297,6 +19295,8 @@ export interface Parameter$listBatchV1NamespacedJob { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listBatchV1NamespacedJob$Status$200 { "application/json": Schemas.io$k8s$api$batch$v1$JobList; @@ -19306,14 +19306,14 @@ export interface Response$listBatchV1NamespacedJob$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$batch$v1$JobList; } export interface Parameter$createBatchV1NamespacedJob { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createBatchV1NamespacedJob = RequestBodies.io$k8s$api$batch$v1$Job.Content; export interface Response$createBatchV1NamespacedJob$Status$200 { @@ -19332,8 +19332,6 @@ export interface Response$createBatchV1NamespacedJob$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$Job; } export interface Parameter$deleteBatchV1CollectionNamespacedJob { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -19368,6 +19366,8 @@ export interface Parameter$deleteBatchV1CollectionNamespacedJob { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteBatchV1CollectionNamespacedJob = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteBatchV1CollectionNamespacedJob$Status$200 { @@ -19376,16 +19376,16 @@ export interface Response$deleteBatchV1CollectionNamespacedJob$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readBatchV1NamespacedJob { - /** name of the Job */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the Job */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readBatchV1NamespacedJob$Status$200 { "application/json": Schemas.io$k8s$api$batch$v1$Job; @@ -19393,16 +19393,16 @@ export interface Response$readBatchV1NamespacedJob$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$Job; } export interface Parameter$replaceBatchV1NamespacedJob { - /** name of the Job */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Job */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceBatchV1NamespacedJob = RequestBodies.io$k8s$api$batch$v1$Job.Content; export interface Response$replaceBatchV1NamespacedJob$Status$200 { @@ -19416,10 +19416,6 @@ export interface Response$replaceBatchV1NamespacedJob$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$Job; } export interface Parameter$deleteBatchV1NamespacedJob { - /** name of the Job */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -19430,6 +19426,10 @@ export interface Parameter$deleteBatchV1NamespacedJob { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the Job */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteBatchV1NamespacedJob = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteBatchV1NamespacedJob$Status$200 { @@ -19443,10 +19443,6 @@ export interface Response$deleteBatchV1NamespacedJob$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchBatchV1NamespacedJob { - /** name of the Job */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -19455,6 +19451,10 @@ export interface Parameter$patchBatchV1NamespacedJob { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Job */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchBatchV1NamespacedJob = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchBatchV1NamespacedJob$Status$200 { @@ -19463,12 +19463,12 @@ export interface Response$patchBatchV1NamespacedJob$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$Job; } export interface Parameter$readBatchV1NamespacedJobStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the Job */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readBatchV1NamespacedJobStatus$Status$200 { "application/json": Schemas.io$k8s$api$batch$v1$Job; @@ -19476,16 +19476,16 @@ export interface Response$readBatchV1NamespacedJobStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$Job; } export interface Parameter$replaceBatchV1NamespacedJobStatus { - /** name of the Job */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Job */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceBatchV1NamespacedJobStatus = RequestBodies.io$k8s$api$batch$v1$Job.Content; export interface Response$replaceBatchV1NamespacedJobStatus$Status$200 { @@ -19499,10 +19499,6 @@ export interface Response$replaceBatchV1NamespacedJobStatus$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$Job; } export interface Parameter$patchBatchV1NamespacedJobStatus { - /** name of the Job */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -19511,6 +19507,10 @@ export interface Parameter$patchBatchV1NamespacedJobStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Job */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchBatchV1NamespacedJobStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchBatchV1NamespacedJobStatus$Status$200 { @@ -19572,8 +19572,6 @@ export interface Parameter$watchBatchV1NamespacedJobList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -19582,6 +19580,8 @@ export interface Parameter$watchBatchV1NamespacedJobList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchBatchV1NamespacedJobList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -19609,10 +19609,6 @@ export interface Parameter$watchBatchV1NamespacedJob { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the Job */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -19621,6 +19617,10 @@ export interface Parameter$watchBatchV1NamespacedJob { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the Job */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchBatchV1NamespacedJob$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -19670,8 +19670,6 @@ export interface Response$listBatchV1beta1CronJobForAllNamespaces$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$batch$v1beta1$CronJobList; } export interface Parameter$listBatchV1beta1NamespacedCronJob { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -19698,6 +19696,8 @@ export interface Parameter$listBatchV1beta1NamespacedCronJob { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listBatchV1beta1NamespacedCronJob$Status$200 { "application/json": Schemas.io$k8s$api$batch$v1beta1$CronJobList; @@ -19707,14 +19707,14 @@ export interface Response$listBatchV1beta1NamespacedCronJob$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$batch$v1beta1$CronJobList; } export interface Parameter$createBatchV1beta1NamespacedCronJob { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createBatchV1beta1NamespacedCronJob = RequestBodies.io$k8s$api$batch$v1beta1$CronJob.Content; export interface Response$createBatchV1beta1NamespacedCronJob$Status$200 { @@ -19733,8 +19733,6 @@ export interface Response$createBatchV1beta1NamespacedCronJob$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1beta1$CronJob; } export interface Parameter$deleteBatchV1beta1CollectionNamespacedCronJob { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -19769,6 +19767,8 @@ export interface Parameter$deleteBatchV1beta1CollectionNamespacedCronJob { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteBatchV1beta1CollectionNamespacedCronJob = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteBatchV1beta1CollectionNamespacedCronJob$Status$200 { @@ -19777,16 +19777,16 @@ export interface Response$deleteBatchV1beta1CollectionNamespacedCronJob$Status$2 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readBatchV1beta1NamespacedCronJob { - /** name of the CronJob */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the CronJob */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readBatchV1beta1NamespacedCronJob$Status$200 { "application/json": Schemas.io$k8s$api$batch$v1beta1$CronJob; @@ -19794,16 +19794,16 @@ export interface Response$readBatchV1beta1NamespacedCronJob$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1beta1$CronJob; } export interface Parameter$replaceBatchV1beta1NamespacedCronJob { - /** name of the CronJob */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the CronJob */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceBatchV1beta1NamespacedCronJob = RequestBodies.io$k8s$api$batch$v1beta1$CronJob.Content; export interface Response$replaceBatchV1beta1NamespacedCronJob$Status$200 { @@ -19817,10 +19817,6 @@ export interface Response$replaceBatchV1beta1NamespacedCronJob$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1beta1$CronJob; } export interface Parameter$deleteBatchV1beta1NamespacedCronJob { - /** name of the CronJob */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -19831,6 +19827,10 @@ export interface Parameter$deleteBatchV1beta1NamespacedCronJob { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the CronJob */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteBatchV1beta1NamespacedCronJob = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteBatchV1beta1NamespacedCronJob$Status$200 { @@ -19844,10 +19844,6 @@ export interface Response$deleteBatchV1beta1NamespacedCronJob$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchBatchV1beta1NamespacedCronJob { - /** name of the CronJob */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -19856,6 +19852,10 @@ export interface Parameter$patchBatchV1beta1NamespacedCronJob { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the CronJob */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchBatchV1beta1NamespacedCronJob = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchBatchV1beta1NamespacedCronJob$Status$200 { @@ -19864,12 +19864,12 @@ export interface Response$patchBatchV1beta1NamespacedCronJob$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1beta1$CronJob; } export interface Parameter$readBatchV1beta1NamespacedCronJobStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the CronJob */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readBatchV1beta1NamespacedCronJobStatus$Status$200 { "application/json": Schemas.io$k8s$api$batch$v1beta1$CronJob; @@ -19877,16 +19877,16 @@ export interface Response$readBatchV1beta1NamespacedCronJobStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1beta1$CronJob; } export interface Parameter$replaceBatchV1beta1NamespacedCronJobStatus { - /** name of the CronJob */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the CronJob */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceBatchV1beta1NamespacedCronJobStatus = RequestBodies.io$k8s$api$batch$v1beta1$CronJob.Content; export interface Response$replaceBatchV1beta1NamespacedCronJobStatus$Status$200 { @@ -19900,10 +19900,6 @@ export interface Response$replaceBatchV1beta1NamespacedCronJobStatus$Status$201 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1beta1$CronJob; } export interface Parameter$patchBatchV1beta1NamespacedCronJobStatus { - /** name of the CronJob */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -19912,6 +19908,10 @@ export interface Parameter$patchBatchV1beta1NamespacedCronJobStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the CronJob */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchBatchV1beta1NamespacedCronJobStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchBatchV1beta1NamespacedCronJobStatus$Status$200 { @@ -19973,8 +19973,6 @@ export interface Parameter$watchBatchV1beta1NamespacedCronJobList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -19983,6 +19981,8 @@ export interface Parameter$watchBatchV1beta1NamespacedCronJobList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchBatchV1beta1NamespacedCronJobList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -20010,10 +20010,6 @@ export interface Parameter$watchBatchV1beta1NamespacedCronJob { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the CronJob */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -20022,6 +20018,10 @@ export interface Parameter$watchBatchV1beta1NamespacedCronJob { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the CronJob */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchBatchV1beta1NamespacedCronJob$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -20071,8 +20071,6 @@ export interface Response$listBatchV2alpha1CronJobForAllNamespaces$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$batch$v2alpha1$CronJobList; } export interface Parameter$listBatchV2alpha1NamespacedCronJob { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -20099,6 +20097,8 @@ export interface Parameter$listBatchV2alpha1NamespacedCronJob { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listBatchV2alpha1NamespacedCronJob$Status$200 { "application/json": Schemas.io$k8s$api$batch$v2alpha1$CronJobList; @@ -20108,14 +20108,14 @@ export interface Response$listBatchV2alpha1NamespacedCronJob$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$batch$v2alpha1$CronJobList; } export interface Parameter$createBatchV2alpha1NamespacedCronJob { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createBatchV2alpha1NamespacedCronJob = RequestBodies.io$k8s$api$batch$v2alpha1$CronJob.Content; export interface Response$createBatchV2alpha1NamespacedCronJob$Status$200 { @@ -20134,8 +20134,6 @@ export interface Response$createBatchV2alpha1NamespacedCronJob$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v2alpha1$CronJob; } export interface Parameter$deleteBatchV2alpha1CollectionNamespacedCronJob { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -20170,6 +20168,8 @@ export interface Parameter$deleteBatchV2alpha1CollectionNamespacedCronJob { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteBatchV2alpha1CollectionNamespacedCronJob = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteBatchV2alpha1CollectionNamespacedCronJob$Status$200 { @@ -20178,16 +20178,16 @@ export interface Response$deleteBatchV2alpha1CollectionNamespacedCronJob$Status$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readBatchV2alpha1NamespacedCronJob { - /** name of the CronJob */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the CronJob */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readBatchV2alpha1NamespacedCronJob$Status$200 { "application/json": Schemas.io$k8s$api$batch$v2alpha1$CronJob; @@ -20195,16 +20195,16 @@ export interface Response$readBatchV2alpha1NamespacedCronJob$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v2alpha1$CronJob; } export interface Parameter$replaceBatchV2alpha1NamespacedCronJob { - /** name of the CronJob */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the CronJob */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceBatchV2alpha1NamespacedCronJob = RequestBodies.io$k8s$api$batch$v2alpha1$CronJob.Content; export interface Response$replaceBatchV2alpha1NamespacedCronJob$Status$200 { @@ -20218,10 +20218,6 @@ export interface Response$replaceBatchV2alpha1NamespacedCronJob$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v2alpha1$CronJob; } export interface Parameter$deleteBatchV2alpha1NamespacedCronJob { - /** name of the CronJob */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -20232,6 +20228,10 @@ export interface Parameter$deleteBatchV2alpha1NamespacedCronJob { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the CronJob */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteBatchV2alpha1NamespacedCronJob = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteBatchV2alpha1NamespacedCronJob$Status$200 { @@ -20245,10 +20245,6 @@ export interface Response$deleteBatchV2alpha1NamespacedCronJob$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchBatchV2alpha1NamespacedCronJob { - /** name of the CronJob */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -20257,6 +20253,10 @@ export interface Parameter$patchBatchV2alpha1NamespacedCronJob { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the CronJob */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchBatchV2alpha1NamespacedCronJob = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchBatchV2alpha1NamespacedCronJob$Status$200 { @@ -20265,12 +20265,12 @@ export interface Response$patchBatchV2alpha1NamespacedCronJob$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v2alpha1$CronJob; } export interface Parameter$readBatchV2alpha1NamespacedCronJobStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the CronJob */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readBatchV2alpha1NamespacedCronJobStatus$Status$200 { "application/json": Schemas.io$k8s$api$batch$v2alpha1$CronJob; @@ -20278,16 +20278,16 @@ export interface Response$readBatchV2alpha1NamespacedCronJobStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v2alpha1$CronJob; } export interface Parameter$replaceBatchV2alpha1NamespacedCronJobStatus { - /** name of the CronJob */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the CronJob */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceBatchV2alpha1NamespacedCronJobStatus = RequestBodies.io$k8s$api$batch$v2alpha1$CronJob.Content; export interface Response$replaceBatchV2alpha1NamespacedCronJobStatus$Status$200 { @@ -20301,10 +20301,6 @@ export interface Response$replaceBatchV2alpha1NamespacedCronJobStatus$Status$201 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v2alpha1$CronJob; } export interface Parameter$patchBatchV2alpha1NamespacedCronJobStatus { - /** name of the CronJob */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -20313,6 +20309,10 @@ export interface Parameter$patchBatchV2alpha1NamespacedCronJobStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the CronJob */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchBatchV2alpha1NamespacedCronJobStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchBatchV2alpha1NamespacedCronJobStatus$Status$200 { @@ -20374,8 +20374,6 @@ export interface Parameter$watchBatchV2alpha1NamespacedCronJobList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -20384,6 +20382,8 @@ export interface Parameter$watchBatchV2alpha1NamespacedCronJobList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchBatchV2alpha1NamespacedCronJobList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -20411,10 +20411,6 @@ export interface Parameter$watchBatchV2alpha1NamespacedCronJob { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the CronJob */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -20423,6 +20419,10 @@ export interface Parameter$watchBatchV2alpha1NamespacedCronJob { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the CronJob */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchBatchV2alpha1NamespacedCronJob$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -20543,14 +20543,14 @@ export interface Response$deleteCertificatesV1beta1CollectionCertificateSigningR "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readCertificatesV1beta1CertificateSigningRequest { - /** name of the CertificateSigningRequest */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the CertificateSigningRequest */ + name: string; } export interface Response$readCertificatesV1beta1CertificateSigningRequest$Status$200 { "application/json": Schemas.io$k8s$api$certificates$v1beta1$CertificateSigningRequest; @@ -20558,14 +20558,14 @@ export interface Response$readCertificatesV1beta1CertificateSigningRequest$Statu "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1beta1$CertificateSigningRequest; } export interface Parameter$replaceCertificatesV1beta1CertificateSigningRequest { - /** name of the CertificateSigningRequest */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the CertificateSigningRequest */ + name: string; } export type RequestBody$replaceCertificatesV1beta1CertificateSigningRequest = RequestBodies.io$k8s$api$certificates$v1beta1$CertificateSigningRequest.Content; export interface Response$replaceCertificatesV1beta1CertificateSigningRequest$Status$200 { @@ -20579,8 +20579,6 @@ export interface Response$replaceCertificatesV1beta1CertificateSigningRequest$St "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1beta1$CertificateSigningRequest; } export interface Parameter$deleteCertificatesV1beta1CertificateSigningRequest { - /** name of the CertificateSigningRequest */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -20591,6 +20589,8 @@ export interface Parameter$deleteCertificatesV1beta1CertificateSigningRequest { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the CertificateSigningRequest */ + name: string; } export type RequestBody$deleteCertificatesV1beta1CertificateSigningRequest = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCertificatesV1beta1CertificateSigningRequest$Status$200 { @@ -20604,8 +20604,6 @@ export interface Response$deleteCertificatesV1beta1CertificateSigningRequest$Sta "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchCertificatesV1beta1CertificateSigningRequest { - /** name of the CertificateSigningRequest */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -20614,6 +20612,8 @@ export interface Parameter$patchCertificatesV1beta1CertificateSigningRequest { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the CertificateSigningRequest */ + name: string; } export type RequestBody$patchCertificatesV1beta1CertificateSigningRequest = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCertificatesV1beta1CertificateSigningRequest$Status$200 { @@ -20626,10 +20626,10 @@ export interface Parameter$replaceCertificatesV1beta1CertificateSigningRequestAp dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; - /** name of the CertificateSigningRequest */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** name of the CertificateSigningRequest */ + name: string; } export type RequestBody$replaceCertificatesV1beta1CertificateSigningRequestApproval = RequestBodies.io$k8s$api$certificates$v1beta1$CertificateSigningRequest.Content; export interface Response$replaceCertificatesV1beta1CertificateSigningRequestApproval$Status$200 { @@ -20643,10 +20643,10 @@ export interface Response$replaceCertificatesV1beta1CertificateSigningRequestApp "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1beta1$CertificateSigningRequest; } export interface Parameter$readCertificatesV1beta1CertificateSigningRequestStatus { - /** name of the CertificateSigningRequest */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** name of the CertificateSigningRequest */ + name: string; } export interface Response$readCertificatesV1beta1CertificateSigningRequestStatus$Status$200 { "application/json": Schemas.io$k8s$api$certificates$v1beta1$CertificateSigningRequest; @@ -20654,14 +20654,14 @@ export interface Response$readCertificatesV1beta1CertificateSigningRequestStatus "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1beta1$CertificateSigningRequest; } export interface Parameter$replaceCertificatesV1beta1CertificateSigningRequestStatus { - /** name of the CertificateSigningRequest */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the CertificateSigningRequest */ + name: string; } export type RequestBody$replaceCertificatesV1beta1CertificateSigningRequestStatus = RequestBodies.io$k8s$api$certificates$v1beta1$CertificateSigningRequest.Content; export interface Response$replaceCertificatesV1beta1CertificateSigningRequestStatus$Status$200 { @@ -20675,8 +20675,6 @@ export interface Response$replaceCertificatesV1beta1CertificateSigningRequestSta "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1beta1$CertificateSigningRequest; } export interface Parameter$patchCertificatesV1beta1CertificateSigningRequestStatus { - /** name of the CertificateSigningRequest */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -20685,6 +20683,8 @@ export interface Parameter$patchCertificatesV1beta1CertificateSigningRequestStat fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the CertificateSigningRequest */ + name: string; } export type RequestBody$patchCertificatesV1beta1CertificateSigningRequestStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCertificatesV1beta1CertificateSigningRequestStatus$Status$200 { @@ -20746,8 +20746,6 @@ export interface Parameter$watchCertificatesV1beta1CertificateSigningRequest { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the CertificateSigningRequest */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -20756,6 +20754,8 @@ export interface Parameter$watchCertificatesV1beta1CertificateSigningRequest { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the CertificateSigningRequest */ + name: string; } export interface Response$watchCertificatesV1beta1CertificateSigningRequest$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -20810,8 +20810,6 @@ export interface Response$listCoordinationV1LeaseForAllNamespaces$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$coordination$v1$LeaseList; } export interface Parameter$listCoordinationV1NamespacedLease { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -20838,6 +20836,8 @@ export interface Parameter$listCoordinationV1NamespacedLease { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listCoordinationV1NamespacedLease$Status$200 { "application/json": Schemas.io$k8s$api$coordination$v1$LeaseList; @@ -20847,14 +20847,14 @@ export interface Response$listCoordinationV1NamespacedLease$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$coordination$v1$LeaseList; } export interface Parameter$createCoordinationV1NamespacedLease { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createCoordinationV1NamespacedLease = RequestBodies.io$k8s$api$coordination$v1$Lease.Content; export interface Response$createCoordinationV1NamespacedLease$Status$200 { @@ -20873,8 +20873,6 @@ export interface Response$createCoordinationV1NamespacedLease$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$coordination$v1$Lease; } export interface Parameter$deleteCoordinationV1CollectionNamespacedLease { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -20909,6 +20907,8 @@ export interface Parameter$deleteCoordinationV1CollectionNamespacedLease { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoordinationV1CollectionNamespacedLease = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoordinationV1CollectionNamespacedLease$Status$200 { @@ -20917,16 +20917,16 @@ export interface Response$deleteCoordinationV1CollectionNamespacedLease$Status$2 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readCoordinationV1NamespacedLease { - /** name of the Lease */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the Lease */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readCoordinationV1NamespacedLease$Status$200 { "application/json": Schemas.io$k8s$api$coordination$v1$Lease; @@ -20934,16 +20934,16 @@ export interface Response$readCoordinationV1NamespacedLease$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$coordination$v1$Lease; } export interface Parameter$replaceCoordinationV1NamespacedLease { - /** name of the Lease */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Lease */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceCoordinationV1NamespacedLease = RequestBodies.io$k8s$api$coordination$v1$Lease.Content; export interface Response$replaceCoordinationV1NamespacedLease$Status$200 { @@ -20957,10 +20957,6 @@ export interface Response$replaceCoordinationV1NamespacedLease$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$coordination$v1$Lease; } export interface Parameter$deleteCoordinationV1NamespacedLease { - /** name of the Lease */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -20971,6 +20967,10 @@ export interface Parameter$deleteCoordinationV1NamespacedLease { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the Lease */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoordinationV1NamespacedLease = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoordinationV1NamespacedLease$Status$200 { @@ -20984,10 +20984,6 @@ export interface Response$deleteCoordinationV1NamespacedLease$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchCoordinationV1NamespacedLease { - /** name of the Lease */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -20996,6 +20992,10 @@ export interface Parameter$patchCoordinationV1NamespacedLease { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Lease */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchCoordinationV1NamespacedLease = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoordinationV1NamespacedLease$Status$200 { @@ -21057,8 +21057,6 @@ export interface Parameter$watchCoordinationV1NamespacedLeaseList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -21067,6 +21065,8 @@ export interface Parameter$watchCoordinationV1NamespacedLeaseList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoordinationV1NamespacedLeaseList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -21094,10 +21094,6 @@ export interface Parameter$watchCoordinationV1NamespacedLease { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the Lease */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -21106,6 +21102,10 @@ export interface Parameter$watchCoordinationV1NamespacedLease { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the Lease */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoordinationV1NamespacedLease$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -21155,8 +21155,6 @@ export interface Response$listCoordinationV1beta1LeaseForAllNamespaces$Status$20 "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$coordination$v1beta1$LeaseList; } export interface Parameter$listCoordinationV1beta1NamespacedLease { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -21183,6 +21181,8 @@ export interface Parameter$listCoordinationV1beta1NamespacedLease { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listCoordinationV1beta1NamespacedLease$Status$200 { "application/json": Schemas.io$k8s$api$coordination$v1beta1$LeaseList; @@ -21192,14 +21192,14 @@ export interface Response$listCoordinationV1beta1NamespacedLease$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$coordination$v1beta1$LeaseList; } export interface Parameter$createCoordinationV1beta1NamespacedLease { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createCoordinationV1beta1NamespacedLease = RequestBodies.io$k8s$api$coordination$v1beta1$Lease.Content; export interface Response$createCoordinationV1beta1NamespacedLease$Status$200 { @@ -21218,8 +21218,6 @@ export interface Response$createCoordinationV1beta1NamespacedLease$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$coordination$v1beta1$Lease; } export interface Parameter$deleteCoordinationV1beta1CollectionNamespacedLease { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -21254,6 +21252,8 @@ export interface Parameter$deleteCoordinationV1beta1CollectionNamespacedLease { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoordinationV1beta1CollectionNamespacedLease = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoordinationV1beta1CollectionNamespacedLease$Status$200 { @@ -21262,16 +21262,16 @@ export interface Response$deleteCoordinationV1beta1CollectionNamespacedLease$Sta "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readCoordinationV1beta1NamespacedLease { - /** name of the Lease */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the Lease */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readCoordinationV1beta1NamespacedLease$Status$200 { "application/json": Schemas.io$k8s$api$coordination$v1beta1$Lease; @@ -21279,16 +21279,16 @@ export interface Response$readCoordinationV1beta1NamespacedLease$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$coordination$v1beta1$Lease; } export interface Parameter$replaceCoordinationV1beta1NamespacedLease { - /** name of the Lease */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Lease */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceCoordinationV1beta1NamespacedLease = RequestBodies.io$k8s$api$coordination$v1beta1$Lease.Content; export interface Response$replaceCoordinationV1beta1NamespacedLease$Status$200 { @@ -21302,10 +21302,6 @@ export interface Response$replaceCoordinationV1beta1NamespacedLease$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$coordination$v1beta1$Lease; } export interface Parameter$deleteCoordinationV1beta1NamespacedLease { - /** name of the Lease */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -21316,6 +21312,10 @@ export interface Parameter$deleteCoordinationV1beta1NamespacedLease { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the Lease */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoordinationV1beta1NamespacedLease = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoordinationV1beta1NamespacedLease$Status$200 { @@ -21329,10 +21329,6 @@ export interface Response$deleteCoordinationV1beta1NamespacedLease$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchCoordinationV1beta1NamespacedLease { - /** name of the Lease */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -21341,6 +21337,10 @@ export interface Parameter$patchCoordinationV1beta1NamespacedLease { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Lease */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchCoordinationV1beta1NamespacedLease = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoordinationV1beta1NamespacedLease$Status$200 { @@ -21402,8 +21402,6 @@ export interface Parameter$watchCoordinationV1beta1NamespacedLeaseList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -21412,6 +21410,8 @@ export interface Parameter$watchCoordinationV1beta1NamespacedLeaseList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoordinationV1beta1NamespacedLeaseList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -21439,10 +21439,6 @@ export interface Parameter$watchCoordinationV1beta1NamespacedLease { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the Lease */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -21451,6 +21447,10 @@ export interface Parameter$watchCoordinationV1beta1NamespacedLease { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the Lease */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoordinationV1beta1NamespacedLease$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -21505,8 +21505,6 @@ export interface Response$listDiscoveryV1beta1EndpointSliceForAllNamespaces$Stat "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$discovery$v1beta1$EndpointSliceList; } export interface Parameter$listDiscoveryV1beta1NamespacedEndpointSlice { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -21533,6 +21531,8 @@ export interface Parameter$listDiscoveryV1beta1NamespacedEndpointSlice { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listDiscoveryV1beta1NamespacedEndpointSlice$Status$200 { "application/json": Schemas.io$k8s$api$discovery$v1beta1$EndpointSliceList; @@ -21542,14 +21542,14 @@ export interface Response$listDiscoveryV1beta1NamespacedEndpointSlice$Status$200 "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$discovery$v1beta1$EndpointSliceList; } export interface Parameter$createDiscoveryV1beta1NamespacedEndpointSlice { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createDiscoveryV1beta1NamespacedEndpointSlice = RequestBodies.io$k8s$api$discovery$v1beta1$EndpointSlice.Content; export interface Response$createDiscoveryV1beta1NamespacedEndpointSlice$Status$200 { @@ -21568,8 +21568,6 @@ export interface Response$createDiscoveryV1beta1NamespacedEndpointSlice$Status$2 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$discovery$v1beta1$EndpointSlice; } export interface Parameter$deleteDiscoveryV1beta1CollectionNamespacedEndpointSlice { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -21604,6 +21602,8 @@ export interface Parameter$deleteDiscoveryV1beta1CollectionNamespacedEndpointSli timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteDiscoveryV1beta1CollectionNamespacedEndpointSlice = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteDiscoveryV1beta1CollectionNamespacedEndpointSlice$Status$200 { @@ -21612,16 +21612,16 @@ export interface Response$deleteDiscoveryV1beta1CollectionNamespacedEndpointSlic "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readDiscoveryV1beta1NamespacedEndpointSlice { - /** name of the EndpointSlice */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the EndpointSlice */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readDiscoveryV1beta1NamespacedEndpointSlice$Status$200 { "application/json": Schemas.io$k8s$api$discovery$v1beta1$EndpointSlice; @@ -21629,16 +21629,16 @@ export interface Response$readDiscoveryV1beta1NamespacedEndpointSlice$Status$200 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$discovery$v1beta1$EndpointSlice; } export interface Parameter$replaceDiscoveryV1beta1NamespacedEndpointSlice { - /** name of the EndpointSlice */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the EndpointSlice */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceDiscoveryV1beta1NamespacedEndpointSlice = RequestBodies.io$k8s$api$discovery$v1beta1$EndpointSlice.Content; export interface Response$replaceDiscoveryV1beta1NamespacedEndpointSlice$Status$200 { @@ -21652,10 +21652,6 @@ export interface Response$replaceDiscoveryV1beta1NamespacedEndpointSlice$Status$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$discovery$v1beta1$EndpointSlice; } export interface Parameter$deleteDiscoveryV1beta1NamespacedEndpointSlice { - /** name of the EndpointSlice */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -21666,6 +21662,10 @@ export interface Parameter$deleteDiscoveryV1beta1NamespacedEndpointSlice { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the EndpointSlice */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteDiscoveryV1beta1NamespacedEndpointSlice = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteDiscoveryV1beta1NamespacedEndpointSlice$Status$200 { @@ -21679,10 +21679,6 @@ export interface Response$deleteDiscoveryV1beta1NamespacedEndpointSlice$Status$2 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchDiscoveryV1beta1NamespacedEndpointSlice { - /** name of the EndpointSlice */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -21691,6 +21687,10 @@ export interface Parameter$patchDiscoveryV1beta1NamespacedEndpointSlice { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the EndpointSlice */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchDiscoveryV1beta1NamespacedEndpointSlice = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchDiscoveryV1beta1NamespacedEndpointSlice$Status$200 { @@ -21752,8 +21752,6 @@ export interface Parameter$watchDiscoveryV1beta1NamespacedEndpointSliceList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -21762,6 +21760,8 @@ export interface Parameter$watchDiscoveryV1beta1NamespacedEndpointSliceList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchDiscoveryV1beta1NamespacedEndpointSliceList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -21789,10 +21789,6 @@ export interface Parameter$watchDiscoveryV1beta1NamespacedEndpointSlice { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the EndpointSlice */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -21801,6 +21797,10 @@ export interface Parameter$watchDiscoveryV1beta1NamespacedEndpointSlice { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the EndpointSlice */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchDiscoveryV1beta1NamespacedEndpointSlice$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -21855,8 +21855,6 @@ export interface Response$listEventsV1beta1EventForAllNamespaces$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$events$v1beta1$EventList; } export interface Parameter$listEventsV1beta1NamespacedEvent { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -21883,6 +21881,8 @@ export interface Parameter$listEventsV1beta1NamespacedEvent { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listEventsV1beta1NamespacedEvent$Status$200 { "application/json": Schemas.io$k8s$api$events$v1beta1$EventList; @@ -21892,14 +21892,14 @@ export interface Response$listEventsV1beta1NamespacedEvent$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$events$v1beta1$EventList; } export interface Parameter$createEventsV1beta1NamespacedEvent { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createEventsV1beta1NamespacedEvent = RequestBodies.io$k8s$api$events$v1beta1$Event.Content; export interface Response$createEventsV1beta1NamespacedEvent$Status$200 { @@ -21918,8 +21918,6 @@ export interface Response$createEventsV1beta1NamespacedEvent$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$events$v1beta1$Event; } export interface Parameter$deleteEventsV1beta1CollectionNamespacedEvent { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -21954,6 +21952,8 @@ export interface Parameter$deleteEventsV1beta1CollectionNamespacedEvent { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteEventsV1beta1CollectionNamespacedEvent = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteEventsV1beta1CollectionNamespacedEvent$Status$200 { @@ -21962,16 +21962,16 @@ export interface Response$deleteEventsV1beta1CollectionNamespacedEvent$Status$20 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readEventsV1beta1NamespacedEvent { - /** name of the Event */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the Event */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readEventsV1beta1NamespacedEvent$Status$200 { "application/json": Schemas.io$k8s$api$events$v1beta1$Event; @@ -21979,16 +21979,16 @@ export interface Response$readEventsV1beta1NamespacedEvent$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$events$v1beta1$Event; } export interface Parameter$replaceEventsV1beta1NamespacedEvent { - /** name of the Event */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Event */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceEventsV1beta1NamespacedEvent = RequestBodies.io$k8s$api$events$v1beta1$Event.Content; export interface Response$replaceEventsV1beta1NamespacedEvent$Status$200 { @@ -22002,10 +22002,6 @@ export interface Response$replaceEventsV1beta1NamespacedEvent$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$events$v1beta1$Event; } export interface Parameter$deleteEventsV1beta1NamespacedEvent { - /** name of the Event */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -22016,6 +22012,10 @@ export interface Parameter$deleteEventsV1beta1NamespacedEvent { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the Event */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteEventsV1beta1NamespacedEvent = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteEventsV1beta1NamespacedEvent$Status$200 { @@ -22029,10 +22029,6 @@ export interface Response$deleteEventsV1beta1NamespacedEvent$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchEventsV1beta1NamespacedEvent { - /** name of the Event */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -22041,6 +22037,10 @@ export interface Parameter$patchEventsV1beta1NamespacedEvent { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Event */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchEventsV1beta1NamespacedEvent = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchEventsV1beta1NamespacedEvent$Status$200 { @@ -22102,8 +22102,6 @@ export interface Parameter$watchEventsV1beta1NamespacedEventList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -22112,6 +22110,8 @@ export interface Parameter$watchEventsV1beta1NamespacedEventList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchEventsV1beta1NamespacedEventList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -22139,10 +22139,6 @@ export interface Parameter$watchEventsV1beta1NamespacedEvent { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the Event */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -22151,6 +22147,10 @@ export interface Parameter$watchEventsV1beta1NamespacedEvent { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the Event */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchEventsV1beta1NamespacedEvent$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -22205,8 +22205,6 @@ export interface Response$listExtensionsV1beta1IngressForAllNamespaces$Status$20 "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$extensions$v1beta1$IngressList; } export interface Parameter$listExtensionsV1beta1NamespacedIngress { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -22233,6 +22231,8 @@ export interface Parameter$listExtensionsV1beta1NamespacedIngress { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listExtensionsV1beta1NamespacedIngress$Status$200 { "application/json": Schemas.io$k8s$api$extensions$v1beta1$IngressList; @@ -22242,14 +22242,14 @@ export interface Response$listExtensionsV1beta1NamespacedIngress$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$extensions$v1beta1$IngressList; } export interface Parameter$createExtensionsV1beta1NamespacedIngress { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createExtensionsV1beta1NamespacedIngress = RequestBodies.io$k8s$api$extensions$v1beta1$Ingress.Content; export interface Response$createExtensionsV1beta1NamespacedIngress$Status$200 { @@ -22268,8 +22268,6 @@ export interface Response$createExtensionsV1beta1NamespacedIngress$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$extensions$v1beta1$Ingress; } export interface Parameter$deleteExtensionsV1beta1CollectionNamespacedIngress { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -22304,6 +22302,8 @@ export interface Parameter$deleteExtensionsV1beta1CollectionNamespacedIngress { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteExtensionsV1beta1CollectionNamespacedIngress = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteExtensionsV1beta1CollectionNamespacedIngress$Status$200 { @@ -22312,16 +22312,16 @@ export interface Response$deleteExtensionsV1beta1CollectionNamespacedIngress$Sta "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readExtensionsV1beta1NamespacedIngress { - /** name of the Ingress */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the Ingress */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readExtensionsV1beta1NamespacedIngress$Status$200 { "application/json": Schemas.io$k8s$api$extensions$v1beta1$Ingress; @@ -22329,16 +22329,16 @@ export interface Response$readExtensionsV1beta1NamespacedIngress$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$extensions$v1beta1$Ingress; } export interface Parameter$replaceExtensionsV1beta1NamespacedIngress { - /** name of the Ingress */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Ingress */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceExtensionsV1beta1NamespacedIngress = RequestBodies.io$k8s$api$extensions$v1beta1$Ingress.Content; export interface Response$replaceExtensionsV1beta1NamespacedIngress$Status$200 { @@ -22352,10 +22352,6 @@ export interface Response$replaceExtensionsV1beta1NamespacedIngress$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$extensions$v1beta1$Ingress; } export interface Parameter$deleteExtensionsV1beta1NamespacedIngress { - /** name of the Ingress */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -22366,6 +22362,10 @@ export interface Parameter$deleteExtensionsV1beta1NamespacedIngress { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the Ingress */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteExtensionsV1beta1NamespacedIngress = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteExtensionsV1beta1NamespacedIngress$Status$200 { @@ -22379,10 +22379,6 @@ export interface Response$deleteExtensionsV1beta1NamespacedIngress$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchExtensionsV1beta1NamespacedIngress { - /** name of the Ingress */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -22391,6 +22387,10 @@ export interface Parameter$patchExtensionsV1beta1NamespacedIngress { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Ingress */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchExtensionsV1beta1NamespacedIngress = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchExtensionsV1beta1NamespacedIngress$Status$200 { @@ -22399,12 +22399,12 @@ export interface Response$patchExtensionsV1beta1NamespacedIngress$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$extensions$v1beta1$Ingress; } export interface Parameter$readExtensionsV1beta1NamespacedIngressStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the Ingress */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readExtensionsV1beta1NamespacedIngressStatus$Status$200 { "application/json": Schemas.io$k8s$api$extensions$v1beta1$Ingress; @@ -22412,16 +22412,16 @@ export interface Response$readExtensionsV1beta1NamespacedIngressStatus$Status$20 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$extensions$v1beta1$Ingress; } export interface Parameter$replaceExtensionsV1beta1NamespacedIngressStatus { - /** name of the Ingress */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Ingress */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceExtensionsV1beta1NamespacedIngressStatus = RequestBodies.io$k8s$api$extensions$v1beta1$Ingress.Content; export interface Response$replaceExtensionsV1beta1NamespacedIngressStatus$Status$200 { @@ -22435,10 +22435,6 @@ export interface Response$replaceExtensionsV1beta1NamespacedIngressStatus$Status "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$extensions$v1beta1$Ingress; } export interface Parameter$patchExtensionsV1beta1NamespacedIngressStatus { - /** name of the Ingress */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -22447,6 +22443,10 @@ export interface Parameter$patchExtensionsV1beta1NamespacedIngressStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Ingress */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchExtensionsV1beta1NamespacedIngressStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchExtensionsV1beta1NamespacedIngressStatus$Status$200 { @@ -22508,8 +22508,6 @@ export interface Parameter$watchExtensionsV1beta1NamespacedIngressList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -22518,6 +22516,8 @@ export interface Parameter$watchExtensionsV1beta1NamespacedIngressList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchExtensionsV1beta1NamespacedIngressList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -22545,10 +22545,6 @@ export interface Parameter$watchExtensionsV1beta1NamespacedIngress { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the Ingress */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -22557,6 +22553,10 @@ export interface Parameter$watchExtensionsV1beta1NamespacedIngress { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the Ingress */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchExtensionsV1beta1NamespacedIngress$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -22677,14 +22677,14 @@ export interface Response$deleteFlowcontrolApiserverV1alpha1CollectionFlowSchema "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readFlowcontrolApiserverV1alpha1FlowSchema { - /** name of the FlowSchema */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the FlowSchema */ + name: string; } export interface Response$readFlowcontrolApiserverV1alpha1FlowSchema$Status$200 { "application/json": Schemas.io$k8s$api$flowcontrol$v1alpha1$FlowSchema; @@ -22692,14 +22692,14 @@ export interface Response$readFlowcontrolApiserverV1alpha1FlowSchema$Status$200 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1alpha1$FlowSchema; } export interface Parameter$replaceFlowcontrolApiserverV1alpha1FlowSchema { - /** name of the FlowSchema */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the FlowSchema */ + name: string; } export type RequestBody$replaceFlowcontrolApiserverV1alpha1FlowSchema = RequestBodies.io$k8s$api$flowcontrol$v1alpha1$FlowSchema.Content; export interface Response$replaceFlowcontrolApiserverV1alpha1FlowSchema$Status$200 { @@ -22713,8 +22713,6 @@ export interface Response$replaceFlowcontrolApiserverV1alpha1FlowSchema$Status$2 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1alpha1$FlowSchema; } export interface Parameter$deleteFlowcontrolApiserverV1alpha1FlowSchema { - /** name of the FlowSchema */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -22725,6 +22723,8 @@ export interface Parameter$deleteFlowcontrolApiserverV1alpha1FlowSchema { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the FlowSchema */ + name: string; } export type RequestBody$deleteFlowcontrolApiserverV1alpha1FlowSchema = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteFlowcontrolApiserverV1alpha1FlowSchema$Status$200 { @@ -22738,8 +22738,6 @@ export interface Response$deleteFlowcontrolApiserverV1alpha1FlowSchema$Status$20 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchFlowcontrolApiserverV1alpha1FlowSchema { - /** name of the FlowSchema */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -22748,6 +22746,8 @@ export interface Parameter$patchFlowcontrolApiserverV1alpha1FlowSchema { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the FlowSchema */ + name: string; } export type RequestBody$patchFlowcontrolApiserverV1alpha1FlowSchema = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchFlowcontrolApiserverV1alpha1FlowSchema$Status$200 { @@ -22756,10 +22756,10 @@ export interface Response$patchFlowcontrolApiserverV1alpha1FlowSchema$Status$200 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1alpha1$FlowSchema; } export interface Parameter$readFlowcontrolApiserverV1alpha1FlowSchemaStatus { - /** name of the FlowSchema */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** name of the FlowSchema */ + name: string; } export interface Response$readFlowcontrolApiserverV1alpha1FlowSchemaStatus$Status$200 { "application/json": Schemas.io$k8s$api$flowcontrol$v1alpha1$FlowSchema; @@ -22767,14 +22767,14 @@ export interface Response$readFlowcontrolApiserverV1alpha1FlowSchemaStatus$Statu "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1alpha1$FlowSchema; } export interface Parameter$replaceFlowcontrolApiserverV1alpha1FlowSchemaStatus { - /** name of the FlowSchema */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the FlowSchema */ + name: string; } export type RequestBody$replaceFlowcontrolApiserverV1alpha1FlowSchemaStatus = RequestBodies.io$k8s$api$flowcontrol$v1alpha1$FlowSchema.Content; export interface Response$replaceFlowcontrolApiserverV1alpha1FlowSchemaStatus$Status$200 { @@ -22788,8 +22788,6 @@ export interface Response$replaceFlowcontrolApiserverV1alpha1FlowSchemaStatus$St "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1alpha1$FlowSchema; } export interface Parameter$patchFlowcontrolApiserverV1alpha1FlowSchemaStatus { - /** name of the FlowSchema */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -22798,6 +22796,8 @@ export interface Parameter$patchFlowcontrolApiserverV1alpha1FlowSchemaStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the FlowSchema */ + name: string; } export type RequestBody$patchFlowcontrolApiserverV1alpha1FlowSchemaStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchFlowcontrolApiserverV1alpha1FlowSchemaStatus$Status$200 { @@ -22907,14 +22907,14 @@ export interface Response$deleteFlowcontrolApiserverV1alpha1CollectionPriorityLe "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readFlowcontrolApiserverV1alpha1PriorityLevelConfiguration { - /** name of the PriorityLevelConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the PriorityLevelConfiguration */ + name: string; } export interface Response$readFlowcontrolApiserverV1alpha1PriorityLevelConfiguration$Status$200 { "application/json": Schemas.io$k8s$api$flowcontrol$v1alpha1$PriorityLevelConfiguration; @@ -22922,14 +22922,14 @@ export interface Response$readFlowcontrolApiserverV1alpha1PriorityLevelConfigura "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1alpha1$PriorityLevelConfiguration; } export interface Parameter$replaceFlowcontrolApiserverV1alpha1PriorityLevelConfiguration { - /** name of the PriorityLevelConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the PriorityLevelConfiguration */ + name: string; } export type RequestBody$replaceFlowcontrolApiserverV1alpha1PriorityLevelConfiguration = RequestBodies.io$k8s$api$flowcontrol$v1alpha1$PriorityLevelConfiguration.Content; export interface Response$replaceFlowcontrolApiserverV1alpha1PriorityLevelConfiguration$Status$200 { @@ -22943,8 +22943,6 @@ export interface Response$replaceFlowcontrolApiserverV1alpha1PriorityLevelConfig "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1alpha1$PriorityLevelConfiguration; } export interface Parameter$deleteFlowcontrolApiserverV1alpha1PriorityLevelConfiguration { - /** name of the PriorityLevelConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -22955,6 +22953,8 @@ export interface Parameter$deleteFlowcontrolApiserverV1alpha1PriorityLevelConfig orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the PriorityLevelConfiguration */ + name: string; } export type RequestBody$deleteFlowcontrolApiserverV1alpha1PriorityLevelConfiguration = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteFlowcontrolApiserverV1alpha1PriorityLevelConfiguration$Status$200 { @@ -22968,8 +22968,6 @@ export interface Response$deleteFlowcontrolApiserverV1alpha1PriorityLevelConfigu "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchFlowcontrolApiserverV1alpha1PriorityLevelConfiguration { - /** name of the PriorityLevelConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -22978,6 +22976,8 @@ export interface Parameter$patchFlowcontrolApiserverV1alpha1PriorityLevelConfigu fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the PriorityLevelConfiguration */ + name: string; } export type RequestBody$patchFlowcontrolApiserverV1alpha1PriorityLevelConfiguration = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchFlowcontrolApiserverV1alpha1PriorityLevelConfiguration$Status$200 { @@ -22986,10 +22986,10 @@ export interface Response$patchFlowcontrolApiserverV1alpha1PriorityLevelConfigur "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1alpha1$PriorityLevelConfiguration; } export interface Parameter$readFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus { - /** name of the PriorityLevelConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** name of the PriorityLevelConfiguration */ + name: string; } export interface Response$readFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus$Status$200 { "application/json": Schemas.io$k8s$api$flowcontrol$v1alpha1$PriorityLevelConfiguration; @@ -22997,14 +22997,14 @@ export interface Response$readFlowcontrolApiserverV1alpha1PriorityLevelConfigura "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1alpha1$PriorityLevelConfiguration; } export interface Parameter$replaceFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus { - /** name of the PriorityLevelConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the PriorityLevelConfiguration */ + name: string; } export type RequestBody$replaceFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus = RequestBodies.io$k8s$api$flowcontrol$v1alpha1$PriorityLevelConfiguration.Content; export interface Response$replaceFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus$Status$200 { @@ -23018,8 +23018,6 @@ export interface Response$replaceFlowcontrolApiserverV1alpha1PriorityLevelConfig "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1alpha1$PriorityLevelConfiguration; } export interface Parameter$patchFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus { - /** name of the PriorityLevelConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -23028,6 +23026,8 @@ export interface Parameter$patchFlowcontrolApiserverV1alpha1PriorityLevelConfigu fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the PriorityLevelConfiguration */ + name: string; } export type RequestBody$patchFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus$Status$200 { @@ -23089,8 +23089,6 @@ export interface Parameter$watchFlowcontrolApiserverV1alpha1FlowSchema { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the FlowSchema */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -23099,6 +23097,8 @@ export interface Parameter$watchFlowcontrolApiserverV1alpha1FlowSchema { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the FlowSchema */ + name: string; } export interface Response$watchFlowcontrolApiserverV1alpha1FlowSchema$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -23161,8 +23161,6 @@ export interface Parameter$watchFlowcontrolApiserverV1alpha1PriorityLevelConfigu * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the PriorityLevelConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -23171,6 +23169,8 @@ export interface Parameter$watchFlowcontrolApiserverV1alpha1PriorityLevelConfigu timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the PriorityLevelConfiguration */ + name: string; } export interface Response$watchFlowcontrolApiserverV1alpha1PriorityLevelConfiguration$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -23190,8 +23190,6 @@ export interface Response$getNetworkingV1APIResources$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; } export interface Parameter$listNetworkingV1NamespacedNetworkPolicy { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -23218,6 +23216,8 @@ export interface Parameter$listNetworkingV1NamespacedNetworkPolicy { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listNetworkingV1NamespacedNetworkPolicy$Status$200 { "application/json": Schemas.io$k8s$api$networking$v1$NetworkPolicyList; @@ -23227,14 +23227,14 @@ export interface Response$listNetworkingV1NamespacedNetworkPolicy$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$networking$v1$NetworkPolicyList; } export interface Parameter$createNetworkingV1NamespacedNetworkPolicy { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createNetworkingV1NamespacedNetworkPolicy = RequestBodies.io$k8s$api$networking$v1$NetworkPolicy.Content; export interface Response$createNetworkingV1NamespacedNetworkPolicy$Status$200 { @@ -23253,8 +23253,6 @@ export interface Response$createNetworkingV1NamespacedNetworkPolicy$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$NetworkPolicy; } export interface Parameter$deleteNetworkingV1CollectionNamespacedNetworkPolicy { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -23289,6 +23287,8 @@ export interface Parameter$deleteNetworkingV1CollectionNamespacedNetworkPolicy { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteNetworkingV1CollectionNamespacedNetworkPolicy = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteNetworkingV1CollectionNamespacedNetworkPolicy$Status$200 { @@ -23297,16 +23297,16 @@ export interface Response$deleteNetworkingV1CollectionNamespacedNetworkPolicy$St "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readNetworkingV1NamespacedNetworkPolicy { - /** name of the NetworkPolicy */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the NetworkPolicy */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readNetworkingV1NamespacedNetworkPolicy$Status$200 { "application/json": Schemas.io$k8s$api$networking$v1$NetworkPolicy; @@ -23314,16 +23314,16 @@ export interface Response$readNetworkingV1NamespacedNetworkPolicy$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$NetworkPolicy; } export interface Parameter$replaceNetworkingV1NamespacedNetworkPolicy { - /** name of the NetworkPolicy */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the NetworkPolicy */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceNetworkingV1NamespacedNetworkPolicy = RequestBodies.io$k8s$api$networking$v1$NetworkPolicy.Content; export interface Response$replaceNetworkingV1NamespacedNetworkPolicy$Status$200 { @@ -23337,10 +23337,6 @@ export interface Response$replaceNetworkingV1NamespacedNetworkPolicy$Status$201 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$NetworkPolicy; } export interface Parameter$deleteNetworkingV1NamespacedNetworkPolicy { - /** name of the NetworkPolicy */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -23351,6 +23347,10 @@ export interface Parameter$deleteNetworkingV1NamespacedNetworkPolicy { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the NetworkPolicy */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteNetworkingV1NamespacedNetworkPolicy = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteNetworkingV1NamespacedNetworkPolicy$Status$200 { @@ -23364,10 +23364,6 @@ export interface Response$deleteNetworkingV1NamespacedNetworkPolicy$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchNetworkingV1NamespacedNetworkPolicy { - /** name of the NetworkPolicy */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -23376,6 +23372,10 @@ export interface Parameter$patchNetworkingV1NamespacedNetworkPolicy { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the NetworkPolicy */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchNetworkingV1NamespacedNetworkPolicy = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchNetworkingV1NamespacedNetworkPolicy$Status$200 { @@ -23437,8 +23437,6 @@ export interface Parameter$watchNetworkingV1NamespacedNetworkPolicyList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -23447,6 +23445,8 @@ export interface Parameter$watchNetworkingV1NamespacedNetworkPolicyList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchNetworkingV1NamespacedNetworkPolicyList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -23474,10 +23474,6 @@ export interface Parameter$watchNetworkingV1NamespacedNetworkPolicy { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the NetworkPolicy */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -23486,6 +23482,10 @@ export interface Parameter$watchNetworkingV1NamespacedNetworkPolicy { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the NetworkPolicy */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchNetworkingV1NamespacedNetworkPolicy$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -23636,14 +23636,14 @@ export interface Response$deleteNetworkingV1beta1CollectionIngressClass$Status$2 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readNetworkingV1beta1IngressClass { - /** name of the IngressClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the IngressClass */ + name: string; } export interface Response$readNetworkingV1beta1IngressClass$Status$200 { "application/json": Schemas.io$k8s$api$networking$v1beta1$IngressClass; @@ -23651,14 +23651,14 @@ export interface Response$readNetworkingV1beta1IngressClass$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1beta1$IngressClass; } export interface Parameter$replaceNetworkingV1beta1IngressClass { - /** name of the IngressClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the IngressClass */ + name: string; } export type RequestBody$replaceNetworkingV1beta1IngressClass = RequestBodies.io$k8s$api$networking$v1beta1$IngressClass.Content; export interface Response$replaceNetworkingV1beta1IngressClass$Status$200 { @@ -23672,8 +23672,6 @@ export interface Response$replaceNetworkingV1beta1IngressClass$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1beta1$IngressClass; } export interface Parameter$deleteNetworkingV1beta1IngressClass { - /** name of the IngressClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -23684,6 +23682,8 @@ export interface Parameter$deleteNetworkingV1beta1IngressClass { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the IngressClass */ + name: string; } export type RequestBody$deleteNetworkingV1beta1IngressClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteNetworkingV1beta1IngressClass$Status$200 { @@ -23697,8 +23697,6 @@ export interface Response$deleteNetworkingV1beta1IngressClass$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchNetworkingV1beta1IngressClass { - /** name of the IngressClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -23707,6 +23705,8 @@ export interface Parameter$patchNetworkingV1beta1IngressClass { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the IngressClass */ + name: string; } export type RequestBody$patchNetworkingV1beta1IngressClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchNetworkingV1beta1IngressClass$Status$200 { @@ -23750,8 +23750,6 @@ export interface Response$listNetworkingV1beta1IngressForAllNamespaces$Status$20 "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$networking$v1beta1$IngressList; } export interface Parameter$listNetworkingV1beta1NamespacedIngress { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -23778,6 +23776,8 @@ export interface Parameter$listNetworkingV1beta1NamespacedIngress { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listNetworkingV1beta1NamespacedIngress$Status$200 { "application/json": Schemas.io$k8s$api$networking$v1beta1$IngressList; @@ -23787,14 +23787,14 @@ export interface Response$listNetworkingV1beta1NamespacedIngress$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$networking$v1beta1$IngressList; } export interface Parameter$createNetworkingV1beta1NamespacedIngress { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createNetworkingV1beta1NamespacedIngress = RequestBodies.io$k8s$api$networking$v1beta1$Ingress.Content; export interface Response$createNetworkingV1beta1NamespacedIngress$Status$200 { @@ -23813,8 +23813,6 @@ export interface Response$createNetworkingV1beta1NamespacedIngress$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1beta1$Ingress; } export interface Parameter$deleteNetworkingV1beta1CollectionNamespacedIngress { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -23849,6 +23847,8 @@ export interface Parameter$deleteNetworkingV1beta1CollectionNamespacedIngress { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteNetworkingV1beta1CollectionNamespacedIngress = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteNetworkingV1beta1CollectionNamespacedIngress$Status$200 { @@ -23857,16 +23857,16 @@ export interface Response$deleteNetworkingV1beta1CollectionNamespacedIngress$Sta "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readNetworkingV1beta1NamespacedIngress { - /** name of the Ingress */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the Ingress */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readNetworkingV1beta1NamespacedIngress$Status$200 { "application/json": Schemas.io$k8s$api$networking$v1beta1$Ingress; @@ -23874,16 +23874,16 @@ export interface Response$readNetworkingV1beta1NamespacedIngress$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1beta1$Ingress; } export interface Parameter$replaceNetworkingV1beta1NamespacedIngress { - /** name of the Ingress */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Ingress */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceNetworkingV1beta1NamespacedIngress = RequestBodies.io$k8s$api$networking$v1beta1$Ingress.Content; export interface Response$replaceNetworkingV1beta1NamespacedIngress$Status$200 { @@ -23897,10 +23897,6 @@ export interface Response$replaceNetworkingV1beta1NamespacedIngress$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1beta1$Ingress; } export interface Parameter$deleteNetworkingV1beta1NamespacedIngress { - /** name of the Ingress */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -23911,6 +23907,10 @@ export interface Parameter$deleteNetworkingV1beta1NamespacedIngress { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the Ingress */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteNetworkingV1beta1NamespacedIngress = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteNetworkingV1beta1NamespacedIngress$Status$200 { @@ -23924,10 +23924,6 @@ export interface Response$deleteNetworkingV1beta1NamespacedIngress$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchNetworkingV1beta1NamespacedIngress { - /** name of the Ingress */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -23936,6 +23932,10 @@ export interface Parameter$patchNetworkingV1beta1NamespacedIngress { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Ingress */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchNetworkingV1beta1NamespacedIngress = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchNetworkingV1beta1NamespacedIngress$Status$200 { @@ -23944,12 +23944,12 @@ export interface Response$patchNetworkingV1beta1NamespacedIngress$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1beta1$Ingress; } export interface Parameter$readNetworkingV1beta1NamespacedIngressStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the Ingress */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readNetworkingV1beta1NamespacedIngressStatus$Status$200 { "application/json": Schemas.io$k8s$api$networking$v1beta1$Ingress; @@ -23957,16 +23957,16 @@ export interface Response$readNetworkingV1beta1NamespacedIngressStatus$Status$20 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1beta1$Ingress; } export interface Parameter$replaceNetworkingV1beta1NamespacedIngressStatus { - /** name of the Ingress */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Ingress */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceNetworkingV1beta1NamespacedIngressStatus = RequestBodies.io$k8s$api$networking$v1beta1$Ingress.Content; export interface Response$replaceNetworkingV1beta1NamespacedIngressStatus$Status$200 { @@ -23980,10 +23980,6 @@ export interface Response$replaceNetworkingV1beta1NamespacedIngressStatus$Status "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1beta1$Ingress; } export interface Parameter$patchNetworkingV1beta1NamespacedIngressStatus { - /** name of the Ingress */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -23992,6 +23988,10 @@ export interface Parameter$patchNetworkingV1beta1NamespacedIngressStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Ingress */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchNetworkingV1beta1NamespacedIngressStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchNetworkingV1beta1NamespacedIngressStatus$Status$200 { @@ -24053,8 +24053,6 @@ export interface Parameter$watchNetworkingV1beta1IngressClass { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the IngressClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -24063,6 +24061,8 @@ export interface Parameter$watchNetworkingV1beta1IngressClass { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the IngressClass */ + name: string; } export interface Response$watchNetworkingV1beta1IngressClass$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -24125,8 +24125,6 @@ export interface Parameter$watchNetworkingV1beta1NamespacedIngressList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -24135,6 +24133,8 @@ export interface Parameter$watchNetworkingV1beta1NamespacedIngressList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchNetworkingV1beta1NamespacedIngressList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -24162,10 +24162,6 @@ export interface Parameter$watchNetworkingV1beta1NamespacedIngress { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the Ingress */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -24174,6 +24170,10 @@ export interface Parameter$watchNetworkingV1beta1NamespacedIngress { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the Ingress */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchNetworkingV1beta1NamespacedIngress$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -24294,14 +24294,14 @@ export interface Response$deleteNodeV1alpha1CollectionRuntimeClass$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readNodeV1alpha1RuntimeClass { - /** name of the RuntimeClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the RuntimeClass */ + name: string; } export interface Response$readNodeV1alpha1RuntimeClass$Status$200 { "application/json": Schemas.io$k8s$api$node$v1alpha1$RuntimeClass; @@ -24309,14 +24309,14 @@ export interface Response$readNodeV1alpha1RuntimeClass$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$node$v1alpha1$RuntimeClass; } export interface Parameter$replaceNodeV1alpha1RuntimeClass { - /** name of the RuntimeClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the RuntimeClass */ + name: string; } export type RequestBody$replaceNodeV1alpha1RuntimeClass = RequestBodies.io$k8s$api$node$v1alpha1$RuntimeClass.Content; export interface Response$replaceNodeV1alpha1RuntimeClass$Status$200 { @@ -24330,8 +24330,6 @@ export interface Response$replaceNodeV1alpha1RuntimeClass$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$node$v1alpha1$RuntimeClass; } export interface Parameter$deleteNodeV1alpha1RuntimeClass { - /** name of the RuntimeClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -24342,6 +24340,8 @@ export interface Parameter$deleteNodeV1alpha1RuntimeClass { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the RuntimeClass */ + name: string; } export type RequestBody$deleteNodeV1alpha1RuntimeClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteNodeV1alpha1RuntimeClass$Status$200 { @@ -24355,8 +24355,6 @@ export interface Response$deleteNodeV1alpha1RuntimeClass$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchNodeV1alpha1RuntimeClass { - /** name of the RuntimeClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -24365,6 +24363,8 @@ export interface Parameter$patchNodeV1alpha1RuntimeClass { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the RuntimeClass */ + name: string; } export type RequestBody$patchNodeV1alpha1RuntimeClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchNodeV1alpha1RuntimeClass$Status$200 { @@ -24426,8 +24426,6 @@ export interface Parameter$watchNodeV1alpha1RuntimeClass { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the RuntimeClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -24436,6 +24434,8 @@ export interface Parameter$watchNodeV1alpha1RuntimeClass { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the RuntimeClass */ + name: string; } export interface Response$watchNodeV1alpha1RuntimeClass$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -24551,14 +24551,14 @@ export interface Response$deleteNodeV1beta1CollectionRuntimeClass$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readNodeV1beta1RuntimeClass { - /** name of the RuntimeClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the RuntimeClass */ + name: string; } export interface Response$readNodeV1beta1RuntimeClass$Status$200 { "application/json": Schemas.io$k8s$api$node$v1beta1$RuntimeClass; @@ -24566,14 +24566,14 @@ export interface Response$readNodeV1beta1RuntimeClass$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$node$v1beta1$RuntimeClass; } export interface Parameter$replaceNodeV1beta1RuntimeClass { - /** name of the RuntimeClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the RuntimeClass */ + name: string; } export type RequestBody$replaceNodeV1beta1RuntimeClass = RequestBodies.io$k8s$api$node$v1beta1$RuntimeClass.Content; export interface Response$replaceNodeV1beta1RuntimeClass$Status$200 { @@ -24587,8 +24587,6 @@ export interface Response$replaceNodeV1beta1RuntimeClass$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$node$v1beta1$RuntimeClass; } export interface Parameter$deleteNodeV1beta1RuntimeClass { - /** name of the RuntimeClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -24599,6 +24597,8 @@ export interface Parameter$deleteNodeV1beta1RuntimeClass { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the RuntimeClass */ + name: string; } export type RequestBody$deleteNodeV1beta1RuntimeClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteNodeV1beta1RuntimeClass$Status$200 { @@ -24612,8 +24612,6 @@ export interface Response$deleteNodeV1beta1RuntimeClass$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchNodeV1beta1RuntimeClass { - /** name of the RuntimeClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -24622,6 +24620,8 @@ export interface Parameter$patchNodeV1beta1RuntimeClass { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the RuntimeClass */ + name: string; } export type RequestBody$patchNodeV1beta1RuntimeClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchNodeV1beta1RuntimeClass$Status$200 { @@ -24683,8 +24683,6 @@ export interface Parameter$watchNodeV1beta1RuntimeClass { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the RuntimeClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -24693,6 +24691,8 @@ export interface Parameter$watchNodeV1beta1RuntimeClass { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the RuntimeClass */ + name: string; } export interface Response$watchNodeV1beta1RuntimeClass$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -24712,8 +24712,6 @@ export interface Response$getPolicyV1beta1APIResources$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; } export interface Parameter$listPolicyV1beta1NamespacedPodDisruptionBudget { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -24740,6 +24738,8 @@ export interface Parameter$listPolicyV1beta1NamespacedPodDisruptionBudget { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listPolicyV1beta1NamespacedPodDisruptionBudget$Status$200 { "application/json": Schemas.io$k8s$api$policy$v1beta1$PodDisruptionBudgetList; @@ -24749,14 +24749,14 @@ export interface Response$listPolicyV1beta1NamespacedPodDisruptionBudget$Status$ "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$policy$v1beta1$PodDisruptionBudgetList; } export interface Parameter$createPolicyV1beta1NamespacedPodDisruptionBudget { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createPolicyV1beta1NamespacedPodDisruptionBudget = RequestBodies.io$k8s$api$policy$v1beta1$PodDisruptionBudget.Content; export interface Response$createPolicyV1beta1NamespacedPodDisruptionBudget$Status$200 { @@ -24775,8 +24775,6 @@ export interface Response$createPolicyV1beta1NamespacedPodDisruptionBudget$Statu "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$policy$v1beta1$PodDisruptionBudget; } export interface Parameter$deletePolicyV1beta1CollectionNamespacedPodDisruptionBudget { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -24811,6 +24809,8 @@ export interface Parameter$deletePolicyV1beta1CollectionNamespacedPodDisruptionB timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deletePolicyV1beta1CollectionNamespacedPodDisruptionBudget = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deletePolicyV1beta1CollectionNamespacedPodDisruptionBudget$Status$200 { @@ -24819,16 +24819,16 @@ export interface Response$deletePolicyV1beta1CollectionNamespacedPodDisruptionBu "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readPolicyV1beta1NamespacedPodDisruptionBudget { - /** name of the PodDisruptionBudget */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the PodDisruptionBudget */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readPolicyV1beta1NamespacedPodDisruptionBudget$Status$200 { "application/json": Schemas.io$k8s$api$policy$v1beta1$PodDisruptionBudget; @@ -24836,16 +24836,16 @@ export interface Response$readPolicyV1beta1NamespacedPodDisruptionBudget$Status$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$policy$v1beta1$PodDisruptionBudget; } export interface Parameter$replacePolicyV1beta1NamespacedPodDisruptionBudget { - /** name of the PodDisruptionBudget */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the PodDisruptionBudget */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replacePolicyV1beta1NamespacedPodDisruptionBudget = RequestBodies.io$k8s$api$policy$v1beta1$PodDisruptionBudget.Content; export interface Response$replacePolicyV1beta1NamespacedPodDisruptionBudget$Status$200 { @@ -24859,10 +24859,6 @@ export interface Response$replacePolicyV1beta1NamespacedPodDisruptionBudget$Stat "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$policy$v1beta1$PodDisruptionBudget; } export interface Parameter$deletePolicyV1beta1NamespacedPodDisruptionBudget { - /** name of the PodDisruptionBudget */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -24873,6 +24869,10 @@ export interface Parameter$deletePolicyV1beta1NamespacedPodDisruptionBudget { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the PodDisruptionBudget */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deletePolicyV1beta1NamespacedPodDisruptionBudget = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deletePolicyV1beta1NamespacedPodDisruptionBudget$Status$200 { @@ -24886,10 +24886,6 @@ export interface Response$deletePolicyV1beta1NamespacedPodDisruptionBudget$Statu "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchPolicyV1beta1NamespacedPodDisruptionBudget { - /** name of the PodDisruptionBudget */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -24898,6 +24894,10 @@ export interface Parameter$patchPolicyV1beta1NamespacedPodDisruptionBudget { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the PodDisruptionBudget */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchPolicyV1beta1NamespacedPodDisruptionBudget = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchPolicyV1beta1NamespacedPodDisruptionBudget$Status$200 { @@ -24906,12 +24906,12 @@ export interface Response$patchPolicyV1beta1NamespacedPodDisruptionBudget$Status "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$policy$v1beta1$PodDisruptionBudget; } export interface Parameter$readPolicyV1beta1NamespacedPodDisruptionBudgetStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the PodDisruptionBudget */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readPolicyV1beta1NamespacedPodDisruptionBudgetStatus$Status$200 { "application/json": Schemas.io$k8s$api$policy$v1beta1$PodDisruptionBudget; @@ -24919,16 +24919,16 @@ export interface Response$readPolicyV1beta1NamespacedPodDisruptionBudgetStatus$S "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$policy$v1beta1$PodDisruptionBudget; } export interface Parameter$replacePolicyV1beta1NamespacedPodDisruptionBudgetStatus { - /** name of the PodDisruptionBudget */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the PodDisruptionBudget */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replacePolicyV1beta1NamespacedPodDisruptionBudgetStatus = RequestBodies.io$k8s$api$policy$v1beta1$PodDisruptionBudget.Content; export interface Response$replacePolicyV1beta1NamespacedPodDisruptionBudgetStatus$Status$200 { @@ -24942,10 +24942,6 @@ export interface Response$replacePolicyV1beta1NamespacedPodDisruptionBudgetStatu "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$policy$v1beta1$PodDisruptionBudget; } export interface Parameter$patchPolicyV1beta1NamespacedPodDisruptionBudgetStatus { - /** name of the PodDisruptionBudget */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -24954,6 +24950,10 @@ export interface Parameter$patchPolicyV1beta1NamespacedPodDisruptionBudgetStatus fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the PodDisruptionBudget */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchPolicyV1beta1NamespacedPodDisruptionBudgetStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchPolicyV1beta1NamespacedPodDisruptionBudgetStatus$Status$200 { @@ -25098,14 +25098,14 @@ export interface Response$deletePolicyV1beta1CollectionPodSecurityPolicy$Status$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readPolicyV1beta1PodSecurityPolicy { - /** name of the PodSecurityPolicy */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the PodSecurityPolicy */ + name: string; } export interface Response$readPolicyV1beta1PodSecurityPolicy$Status$200 { "application/json": Schemas.io$k8s$api$policy$v1beta1$PodSecurityPolicy; @@ -25113,14 +25113,14 @@ export interface Response$readPolicyV1beta1PodSecurityPolicy$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$policy$v1beta1$PodSecurityPolicy; } export interface Parameter$replacePolicyV1beta1PodSecurityPolicy { - /** name of the PodSecurityPolicy */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the PodSecurityPolicy */ + name: string; } export type RequestBody$replacePolicyV1beta1PodSecurityPolicy = RequestBodies.io$k8s$api$policy$v1beta1$PodSecurityPolicy.Content; export interface Response$replacePolicyV1beta1PodSecurityPolicy$Status$200 { @@ -25134,8 +25134,6 @@ export interface Response$replacePolicyV1beta1PodSecurityPolicy$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$policy$v1beta1$PodSecurityPolicy; } export interface Parameter$deletePolicyV1beta1PodSecurityPolicy { - /** name of the PodSecurityPolicy */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -25146,6 +25144,8 @@ export interface Parameter$deletePolicyV1beta1PodSecurityPolicy { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the PodSecurityPolicy */ + name: string; } export type RequestBody$deletePolicyV1beta1PodSecurityPolicy = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deletePolicyV1beta1PodSecurityPolicy$Status$200 { @@ -25159,8 +25159,6 @@ export interface Response$deletePolicyV1beta1PodSecurityPolicy$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$policy$v1beta1$PodSecurityPolicy; } export interface Parameter$patchPolicyV1beta1PodSecurityPolicy { - /** name of the PodSecurityPolicy */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -25169,6 +25167,8 @@ export interface Parameter$patchPolicyV1beta1PodSecurityPolicy { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the PodSecurityPolicy */ + name: string; } export type RequestBody$patchPolicyV1beta1PodSecurityPolicy = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchPolicyV1beta1PodSecurityPolicy$Status$200 { @@ -25195,8 +25195,6 @@ export interface Parameter$watchPolicyV1beta1NamespacedPodDisruptionBudgetList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -25205,6 +25203,8 @@ export interface Parameter$watchPolicyV1beta1NamespacedPodDisruptionBudgetList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchPolicyV1beta1NamespacedPodDisruptionBudgetList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -25232,10 +25232,6 @@ export interface Parameter$watchPolicyV1beta1NamespacedPodDisruptionBudget { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the PodDisruptionBudget */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -25244,6 +25240,10 @@ export interface Parameter$watchPolicyV1beta1NamespacedPodDisruptionBudget { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the PodDisruptionBudget */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchPolicyV1beta1NamespacedPodDisruptionBudget$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -25341,8 +25341,6 @@ export interface Parameter$watchPolicyV1beta1PodSecurityPolicy { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the PodSecurityPolicy */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -25351,6 +25349,8 @@ export interface Parameter$watchPolicyV1beta1PodSecurityPolicy { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the PodSecurityPolicy */ + name: string; } export interface Response$watchPolicyV1beta1PodSecurityPolicy$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -25471,10 +25471,10 @@ export interface Response$deleteRbacAuthorizationV1CollectionClusterRoleBinding$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readRbacAuthorizationV1ClusterRoleBinding { - /** name of the ClusterRoleBinding */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** name of the ClusterRoleBinding */ + name: string; } export interface Response$readRbacAuthorizationV1ClusterRoleBinding$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1$ClusterRoleBinding; @@ -25482,14 +25482,14 @@ export interface Response$readRbacAuthorizationV1ClusterRoleBinding$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$ClusterRoleBinding; } export interface Parameter$replaceRbacAuthorizationV1ClusterRoleBinding { - /** name of the ClusterRoleBinding */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the ClusterRoleBinding */ + name: string; } export type RequestBody$replaceRbacAuthorizationV1ClusterRoleBinding = RequestBodies.io$k8s$api$rbac$v1$ClusterRoleBinding.Content; export interface Response$replaceRbacAuthorizationV1ClusterRoleBinding$Status$200 { @@ -25503,8 +25503,6 @@ export interface Response$replaceRbacAuthorizationV1ClusterRoleBinding$Status$20 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$ClusterRoleBinding; } export interface Parameter$deleteRbacAuthorizationV1ClusterRoleBinding { - /** name of the ClusterRoleBinding */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -25515,6 +25513,8 @@ export interface Parameter$deleteRbacAuthorizationV1ClusterRoleBinding { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the ClusterRoleBinding */ + name: string; } export type RequestBody$deleteRbacAuthorizationV1ClusterRoleBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteRbacAuthorizationV1ClusterRoleBinding$Status$200 { @@ -25528,8 +25528,6 @@ export interface Response$deleteRbacAuthorizationV1ClusterRoleBinding$Status$202 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchRbacAuthorizationV1ClusterRoleBinding { - /** name of the ClusterRoleBinding */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -25538,6 +25536,8 @@ export interface Parameter$patchRbacAuthorizationV1ClusterRoleBinding { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the ClusterRoleBinding */ + name: string; } export type RequestBody$patchRbacAuthorizationV1ClusterRoleBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchRbacAuthorizationV1ClusterRoleBinding$Status$200 { @@ -25647,10 +25647,10 @@ export interface Response$deleteRbacAuthorizationV1CollectionClusterRole$Status$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readRbacAuthorizationV1ClusterRole { - /** name of the ClusterRole */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** name of the ClusterRole */ + name: string; } export interface Response$readRbacAuthorizationV1ClusterRole$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1$ClusterRole; @@ -25658,14 +25658,14 @@ export interface Response$readRbacAuthorizationV1ClusterRole$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$ClusterRole; } export interface Parameter$replaceRbacAuthorizationV1ClusterRole { - /** name of the ClusterRole */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the ClusterRole */ + name: string; } export type RequestBody$replaceRbacAuthorizationV1ClusterRole = RequestBodies.io$k8s$api$rbac$v1$ClusterRole.Content; export interface Response$replaceRbacAuthorizationV1ClusterRole$Status$200 { @@ -25679,8 +25679,6 @@ export interface Response$replaceRbacAuthorizationV1ClusterRole$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$ClusterRole; } export interface Parameter$deleteRbacAuthorizationV1ClusterRole { - /** name of the ClusterRole */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -25691,6 +25689,8 @@ export interface Parameter$deleteRbacAuthorizationV1ClusterRole { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the ClusterRole */ + name: string; } export type RequestBody$deleteRbacAuthorizationV1ClusterRole = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteRbacAuthorizationV1ClusterRole$Status$200 { @@ -25704,8 +25704,6 @@ export interface Response$deleteRbacAuthorizationV1ClusterRole$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchRbacAuthorizationV1ClusterRole { - /** name of the ClusterRole */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -25714,6 +25712,8 @@ export interface Parameter$patchRbacAuthorizationV1ClusterRole { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the ClusterRole */ + name: string; } export type RequestBody$patchRbacAuthorizationV1ClusterRole = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchRbacAuthorizationV1ClusterRole$Status$200 { @@ -25722,8 +25722,6 @@ export interface Response$patchRbacAuthorizationV1ClusterRole$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$ClusterRole; } export interface Parameter$listRbacAuthorizationV1NamespacedRoleBinding { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -25750,6 +25748,8 @@ export interface Parameter$listRbacAuthorizationV1NamespacedRoleBinding { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listRbacAuthorizationV1NamespacedRoleBinding$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1$RoleBindingList; @@ -25759,14 +25759,14 @@ export interface Response$listRbacAuthorizationV1NamespacedRoleBinding$Status$20 "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$rbac$v1$RoleBindingList; } export interface Parameter$createRbacAuthorizationV1NamespacedRoleBinding { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createRbacAuthorizationV1NamespacedRoleBinding = RequestBodies.io$k8s$api$rbac$v1$RoleBinding.Content; export interface Response$createRbacAuthorizationV1NamespacedRoleBinding$Status$200 { @@ -25785,8 +25785,6 @@ export interface Response$createRbacAuthorizationV1NamespacedRoleBinding$Status$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$RoleBinding; } export interface Parameter$deleteRbacAuthorizationV1CollectionNamespacedRoleBinding { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -25821,6 +25819,8 @@ export interface Parameter$deleteRbacAuthorizationV1CollectionNamespacedRoleBind timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteRbacAuthorizationV1CollectionNamespacedRoleBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteRbacAuthorizationV1CollectionNamespacedRoleBinding$Status$200 { @@ -25829,12 +25829,12 @@ export interface Response$deleteRbacAuthorizationV1CollectionNamespacedRoleBindi "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readRbacAuthorizationV1NamespacedRoleBinding { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the RoleBinding */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readRbacAuthorizationV1NamespacedRoleBinding$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1$RoleBinding; @@ -25842,16 +25842,16 @@ export interface Response$readRbacAuthorizationV1NamespacedRoleBinding$Status$20 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$RoleBinding; } export interface Parameter$replaceRbacAuthorizationV1NamespacedRoleBinding { - /** name of the RoleBinding */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the RoleBinding */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceRbacAuthorizationV1NamespacedRoleBinding = RequestBodies.io$k8s$api$rbac$v1$RoleBinding.Content; export interface Response$replaceRbacAuthorizationV1NamespacedRoleBinding$Status$200 { @@ -25865,10 +25865,6 @@ export interface Response$replaceRbacAuthorizationV1NamespacedRoleBinding$Status "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$RoleBinding; } export interface Parameter$deleteRbacAuthorizationV1NamespacedRoleBinding { - /** name of the RoleBinding */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -25879,6 +25875,10 @@ export interface Parameter$deleteRbacAuthorizationV1NamespacedRoleBinding { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the RoleBinding */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteRbacAuthorizationV1NamespacedRoleBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteRbacAuthorizationV1NamespacedRoleBinding$Status$200 { @@ -25892,10 +25892,6 @@ export interface Response$deleteRbacAuthorizationV1NamespacedRoleBinding$Status$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchRbacAuthorizationV1NamespacedRoleBinding { - /** name of the RoleBinding */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -25904,6 +25900,10 @@ export interface Parameter$patchRbacAuthorizationV1NamespacedRoleBinding { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the RoleBinding */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchRbacAuthorizationV1NamespacedRoleBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchRbacAuthorizationV1NamespacedRoleBinding$Status$200 { @@ -25912,8 +25912,6 @@ export interface Response$patchRbacAuthorizationV1NamespacedRoleBinding$Status$2 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$RoleBinding; } export interface Parameter$listRbacAuthorizationV1NamespacedRole { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -25940,6 +25938,8 @@ export interface Parameter$listRbacAuthorizationV1NamespacedRole { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listRbacAuthorizationV1NamespacedRole$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1$RoleList; @@ -25949,14 +25949,14 @@ export interface Response$listRbacAuthorizationV1NamespacedRole$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$rbac$v1$RoleList; } export interface Parameter$createRbacAuthorizationV1NamespacedRole { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createRbacAuthorizationV1NamespacedRole = RequestBodies.io$k8s$api$rbac$v1$Role.Content; export interface Response$createRbacAuthorizationV1NamespacedRole$Status$200 { @@ -25975,8 +25975,6 @@ export interface Response$createRbacAuthorizationV1NamespacedRole$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$Role; } export interface Parameter$deleteRbacAuthorizationV1CollectionNamespacedRole { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -26011,6 +26009,8 @@ export interface Parameter$deleteRbacAuthorizationV1CollectionNamespacedRole { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteRbacAuthorizationV1CollectionNamespacedRole = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteRbacAuthorizationV1CollectionNamespacedRole$Status$200 { @@ -26019,12 +26019,12 @@ export interface Response$deleteRbacAuthorizationV1CollectionNamespacedRole$Stat "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readRbacAuthorizationV1NamespacedRole { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the Role */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readRbacAuthorizationV1NamespacedRole$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1$Role; @@ -26032,16 +26032,16 @@ export interface Response$readRbacAuthorizationV1NamespacedRole$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$Role; } export interface Parameter$replaceRbacAuthorizationV1NamespacedRole { - /** name of the Role */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Role */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceRbacAuthorizationV1NamespacedRole = RequestBodies.io$k8s$api$rbac$v1$Role.Content; export interface Response$replaceRbacAuthorizationV1NamespacedRole$Status$200 { @@ -26055,10 +26055,6 @@ export interface Response$replaceRbacAuthorizationV1NamespacedRole$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$Role; } export interface Parameter$deleteRbacAuthorizationV1NamespacedRole { - /** name of the Role */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -26069,6 +26065,10 @@ export interface Parameter$deleteRbacAuthorizationV1NamespacedRole { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the Role */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteRbacAuthorizationV1NamespacedRole = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteRbacAuthorizationV1NamespacedRole$Status$200 { @@ -26082,10 +26082,6 @@ export interface Response$deleteRbacAuthorizationV1NamespacedRole$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchRbacAuthorizationV1NamespacedRole { - /** name of the Role */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -26094,6 +26090,10 @@ export interface Parameter$patchRbacAuthorizationV1NamespacedRole { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Role */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchRbacAuthorizationV1NamespacedRole = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchRbacAuthorizationV1NamespacedRole$Status$200 { @@ -26225,8 +26225,6 @@ export interface Parameter$watchRbacAuthorizationV1ClusterRoleBinding { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the ClusterRoleBinding */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -26235,6 +26233,8 @@ export interface Parameter$watchRbacAuthorizationV1ClusterRoleBinding { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the ClusterRoleBinding */ + name: string; } export interface Response$watchRbacAuthorizationV1ClusterRoleBinding$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -26297,8 +26297,6 @@ export interface Parameter$watchRbacAuthorizationV1ClusterRole { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the ClusterRole */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -26307,6 +26305,8 @@ export interface Parameter$watchRbacAuthorizationV1ClusterRole { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the ClusterRole */ + name: string; } export interface Response$watchRbacAuthorizationV1ClusterRole$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -26334,8 +26334,6 @@ export interface Parameter$watchRbacAuthorizationV1NamespacedRoleBindingList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -26344,6 +26342,8 @@ export interface Parameter$watchRbacAuthorizationV1NamespacedRoleBindingList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchRbacAuthorizationV1NamespacedRoleBindingList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -26371,10 +26371,6 @@ export interface Parameter$watchRbacAuthorizationV1NamespacedRoleBinding { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the RoleBinding */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -26383,6 +26379,10 @@ export interface Parameter$watchRbacAuthorizationV1NamespacedRoleBinding { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the RoleBinding */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchRbacAuthorizationV1NamespacedRoleBinding$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -26410,8 +26410,6 @@ export interface Parameter$watchRbacAuthorizationV1NamespacedRoleList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -26420,6 +26418,8 @@ export interface Parameter$watchRbacAuthorizationV1NamespacedRoleList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchRbacAuthorizationV1NamespacedRoleList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -26447,10 +26447,6 @@ export interface Parameter$watchRbacAuthorizationV1NamespacedRole { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the Role */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -26459,6 +26455,10 @@ export interface Parameter$watchRbacAuthorizationV1NamespacedRole { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the Role */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchRbacAuthorizationV1NamespacedRole$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -26644,10 +26644,10 @@ export interface Response$deleteRbacAuthorizationV1alpha1CollectionClusterRoleBi "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readRbacAuthorizationV1alpha1ClusterRoleBinding { - /** name of the ClusterRoleBinding */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** name of the ClusterRoleBinding */ + name: string; } export interface Response$readRbacAuthorizationV1alpha1ClusterRoleBinding$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1alpha1$ClusterRoleBinding; @@ -26655,14 +26655,14 @@ export interface Response$readRbacAuthorizationV1alpha1ClusterRoleBinding$Status "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1alpha1$ClusterRoleBinding; } export interface Parameter$replaceRbacAuthorizationV1alpha1ClusterRoleBinding { - /** name of the ClusterRoleBinding */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the ClusterRoleBinding */ + name: string; } export type RequestBody$replaceRbacAuthorizationV1alpha1ClusterRoleBinding = RequestBodies.io$k8s$api$rbac$v1alpha1$ClusterRoleBinding.Content; export interface Response$replaceRbacAuthorizationV1alpha1ClusterRoleBinding$Status$200 { @@ -26676,8 +26676,6 @@ export interface Response$replaceRbacAuthorizationV1alpha1ClusterRoleBinding$Sta "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1alpha1$ClusterRoleBinding; } export interface Parameter$deleteRbacAuthorizationV1alpha1ClusterRoleBinding { - /** name of the ClusterRoleBinding */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -26688,6 +26686,8 @@ export interface Parameter$deleteRbacAuthorizationV1alpha1ClusterRoleBinding { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the ClusterRoleBinding */ + name: string; } export type RequestBody$deleteRbacAuthorizationV1alpha1ClusterRoleBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteRbacAuthorizationV1alpha1ClusterRoleBinding$Status$200 { @@ -26701,8 +26701,6 @@ export interface Response$deleteRbacAuthorizationV1alpha1ClusterRoleBinding$Stat "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchRbacAuthorizationV1alpha1ClusterRoleBinding { - /** name of the ClusterRoleBinding */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -26711,6 +26709,8 @@ export interface Parameter$patchRbacAuthorizationV1alpha1ClusterRoleBinding { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the ClusterRoleBinding */ + name: string; } export type RequestBody$patchRbacAuthorizationV1alpha1ClusterRoleBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchRbacAuthorizationV1alpha1ClusterRoleBinding$Status$200 { @@ -26820,10 +26820,10 @@ export interface Response$deleteRbacAuthorizationV1alpha1CollectionClusterRole$S "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readRbacAuthorizationV1alpha1ClusterRole { - /** name of the ClusterRole */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** name of the ClusterRole */ + name: string; } export interface Response$readRbacAuthorizationV1alpha1ClusterRole$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1alpha1$ClusterRole; @@ -26831,14 +26831,14 @@ export interface Response$readRbacAuthorizationV1alpha1ClusterRole$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1alpha1$ClusterRole; } export interface Parameter$replaceRbacAuthorizationV1alpha1ClusterRole { - /** name of the ClusterRole */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the ClusterRole */ + name: string; } export type RequestBody$replaceRbacAuthorizationV1alpha1ClusterRole = RequestBodies.io$k8s$api$rbac$v1alpha1$ClusterRole.Content; export interface Response$replaceRbacAuthorizationV1alpha1ClusterRole$Status$200 { @@ -26852,8 +26852,6 @@ export interface Response$replaceRbacAuthorizationV1alpha1ClusterRole$Status$201 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1alpha1$ClusterRole; } export interface Parameter$deleteRbacAuthorizationV1alpha1ClusterRole { - /** name of the ClusterRole */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -26864,6 +26862,8 @@ export interface Parameter$deleteRbacAuthorizationV1alpha1ClusterRole { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the ClusterRole */ + name: string; } export type RequestBody$deleteRbacAuthorizationV1alpha1ClusterRole = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteRbacAuthorizationV1alpha1ClusterRole$Status$200 { @@ -26877,8 +26877,6 @@ export interface Response$deleteRbacAuthorizationV1alpha1ClusterRole$Status$202 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchRbacAuthorizationV1alpha1ClusterRole { - /** name of the ClusterRole */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -26887,6 +26885,8 @@ export interface Parameter$patchRbacAuthorizationV1alpha1ClusterRole { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the ClusterRole */ + name: string; } export type RequestBody$patchRbacAuthorizationV1alpha1ClusterRole = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchRbacAuthorizationV1alpha1ClusterRole$Status$200 { @@ -26895,8 +26895,6 @@ export interface Response$patchRbacAuthorizationV1alpha1ClusterRole$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1alpha1$ClusterRole; } export interface Parameter$listRbacAuthorizationV1alpha1NamespacedRoleBinding { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -26923,6 +26921,8 @@ export interface Parameter$listRbacAuthorizationV1alpha1NamespacedRoleBinding { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listRbacAuthorizationV1alpha1NamespacedRoleBinding$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1alpha1$RoleBindingList; @@ -26932,14 +26932,14 @@ export interface Response$listRbacAuthorizationV1alpha1NamespacedRoleBinding$Sta "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$rbac$v1alpha1$RoleBindingList; } export interface Parameter$createRbacAuthorizationV1alpha1NamespacedRoleBinding { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createRbacAuthorizationV1alpha1NamespacedRoleBinding = RequestBodies.io$k8s$api$rbac$v1alpha1$RoleBinding.Content; export interface Response$createRbacAuthorizationV1alpha1NamespacedRoleBinding$Status$200 { @@ -26958,8 +26958,6 @@ export interface Response$createRbacAuthorizationV1alpha1NamespacedRoleBinding$S "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1alpha1$RoleBinding; } export interface Parameter$deleteRbacAuthorizationV1alpha1CollectionNamespacedRoleBinding { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -26994,6 +26992,8 @@ export interface Parameter$deleteRbacAuthorizationV1alpha1CollectionNamespacedRo timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteRbacAuthorizationV1alpha1CollectionNamespacedRoleBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteRbacAuthorizationV1alpha1CollectionNamespacedRoleBinding$Status$200 { @@ -27002,12 +27002,12 @@ export interface Response$deleteRbacAuthorizationV1alpha1CollectionNamespacedRol "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readRbacAuthorizationV1alpha1NamespacedRoleBinding { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the RoleBinding */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readRbacAuthorizationV1alpha1NamespacedRoleBinding$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1alpha1$RoleBinding; @@ -27015,16 +27015,16 @@ export interface Response$readRbacAuthorizationV1alpha1NamespacedRoleBinding$Sta "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1alpha1$RoleBinding; } export interface Parameter$replaceRbacAuthorizationV1alpha1NamespacedRoleBinding { - /** name of the RoleBinding */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the RoleBinding */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceRbacAuthorizationV1alpha1NamespacedRoleBinding = RequestBodies.io$k8s$api$rbac$v1alpha1$RoleBinding.Content; export interface Response$replaceRbacAuthorizationV1alpha1NamespacedRoleBinding$Status$200 { @@ -27038,10 +27038,6 @@ export interface Response$replaceRbacAuthorizationV1alpha1NamespacedRoleBinding$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1alpha1$RoleBinding; } export interface Parameter$deleteRbacAuthorizationV1alpha1NamespacedRoleBinding { - /** name of the RoleBinding */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -27052,6 +27048,10 @@ export interface Parameter$deleteRbacAuthorizationV1alpha1NamespacedRoleBinding orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the RoleBinding */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteRbacAuthorizationV1alpha1NamespacedRoleBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteRbacAuthorizationV1alpha1NamespacedRoleBinding$Status$200 { @@ -27065,10 +27065,6 @@ export interface Response$deleteRbacAuthorizationV1alpha1NamespacedRoleBinding$S "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchRbacAuthorizationV1alpha1NamespacedRoleBinding { - /** name of the RoleBinding */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -27077,6 +27073,10 @@ export interface Parameter$patchRbacAuthorizationV1alpha1NamespacedRoleBinding { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the RoleBinding */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchRbacAuthorizationV1alpha1NamespacedRoleBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchRbacAuthorizationV1alpha1NamespacedRoleBinding$Status$200 { @@ -27085,8 +27085,6 @@ export interface Response$patchRbacAuthorizationV1alpha1NamespacedRoleBinding$St "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1alpha1$RoleBinding; } export interface Parameter$listRbacAuthorizationV1alpha1NamespacedRole { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -27113,6 +27111,8 @@ export interface Parameter$listRbacAuthorizationV1alpha1NamespacedRole { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listRbacAuthorizationV1alpha1NamespacedRole$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1alpha1$RoleList; @@ -27122,14 +27122,14 @@ export interface Response$listRbacAuthorizationV1alpha1NamespacedRole$Status$200 "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$rbac$v1alpha1$RoleList; } export interface Parameter$createRbacAuthorizationV1alpha1NamespacedRole { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createRbacAuthorizationV1alpha1NamespacedRole = RequestBodies.io$k8s$api$rbac$v1alpha1$Role.Content; export interface Response$createRbacAuthorizationV1alpha1NamespacedRole$Status$200 { @@ -27148,8 +27148,6 @@ export interface Response$createRbacAuthorizationV1alpha1NamespacedRole$Status$2 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1alpha1$Role; } export interface Parameter$deleteRbacAuthorizationV1alpha1CollectionNamespacedRole { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -27184,6 +27182,8 @@ export interface Parameter$deleteRbacAuthorizationV1alpha1CollectionNamespacedRo timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteRbacAuthorizationV1alpha1CollectionNamespacedRole = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteRbacAuthorizationV1alpha1CollectionNamespacedRole$Status$200 { @@ -27192,12 +27192,12 @@ export interface Response$deleteRbacAuthorizationV1alpha1CollectionNamespacedRol "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readRbacAuthorizationV1alpha1NamespacedRole { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the Role */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readRbacAuthorizationV1alpha1NamespacedRole$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1alpha1$Role; @@ -27205,16 +27205,16 @@ export interface Response$readRbacAuthorizationV1alpha1NamespacedRole$Status$200 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1alpha1$Role; } export interface Parameter$replaceRbacAuthorizationV1alpha1NamespacedRole { - /** name of the Role */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Role */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceRbacAuthorizationV1alpha1NamespacedRole = RequestBodies.io$k8s$api$rbac$v1alpha1$Role.Content; export interface Response$replaceRbacAuthorizationV1alpha1NamespacedRole$Status$200 { @@ -27228,10 +27228,6 @@ export interface Response$replaceRbacAuthorizationV1alpha1NamespacedRole$Status$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1alpha1$Role; } export interface Parameter$deleteRbacAuthorizationV1alpha1NamespacedRole { - /** name of the Role */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -27242,6 +27238,10 @@ export interface Parameter$deleteRbacAuthorizationV1alpha1NamespacedRole { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the Role */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteRbacAuthorizationV1alpha1NamespacedRole = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteRbacAuthorizationV1alpha1NamespacedRole$Status$200 { @@ -27255,10 +27255,6 @@ export interface Response$deleteRbacAuthorizationV1alpha1NamespacedRole$Status$2 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchRbacAuthorizationV1alpha1NamespacedRole { - /** name of the Role */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -27267,6 +27263,10 @@ export interface Parameter$patchRbacAuthorizationV1alpha1NamespacedRole { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Role */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchRbacAuthorizationV1alpha1NamespacedRole = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchRbacAuthorizationV1alpha1NamespacedRole$Status$200 { @@ -27398,8 +27398,6 @@ export interface Parameter$watchRbacAuthorizationV1alpha1ClusterRoleBinding { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the ClusterRoleBinding */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -27408,6 +27406,8 @@ export interface Parameter$watchRbacAuthorizationV1alpha1ClusterRoleBinding { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the ClusterRoleBinding */ + name: string; } export interface Response$watchRbacAuthorizationV1alpha1ClusterRoleBinding$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -27470,8 +27470,6 @@ export interface Parameter$watchRbacAuthorizationV1alpha1ClusterRole { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the ClusterRole */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -27480,6 +27478,8 @@ export interface Parameter$watchRbacAuthorizationV1alpha1ClusterRole { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the ClusterRole */ + name: string; } export interface Response$watchRbacAuthorizationV1alpha1ClusterRole$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -27507,8 +27507,6 @@ export interface Parameter$watchRbacAuthorizationV1alpha1NamespacedRoleBindingLi * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -27517,6 +27515,8 @@ export interface Parameter$watchRbacAuthorizationV1alpha1NamespacedRoleBindingLi timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchRbacAuthorizationV1alpha1NamespacedRoleBindingList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -27544,10 +27544,6 @@ export interface Parameter$watchRbacAuthorizationV1alpha1NamespacedRoleBinding { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the RoleBinding */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -27556,6 +27552,10 @@ export interface Parameter$watchRbacAuthorizationV1alpha1NamespacedRoleBinding { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the RoleBinding */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchRbacAuthorizationV1alpha1NamespacedRoleBinding$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -27583,8 +27583,6 @@ export interface Parameter$watchRbacAuthorizationV1alpha1NamespacedRoleList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -27593,6 +27591,8 @@ export interface Parameter$watchRbacAuthorizationV1alpha1NamespacedRoleList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchRbacAuthorizationV1alpha1NamespacedRoleList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -27620,10 +27620,6 @@ export interface Parameter$watchRbacAuthorizationV1alpha1NamespacedRole { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the Role */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -27632,6 +27628,10 @@ export interface Parameter$watchRbacAuthorizationV1alpha1NamespacedRole { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the Role */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchRbacAuthorizationV1alpha1NamespacedRole$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -27817,10 +27817,10 @@ export interface Response$deleteRbacAuthorizationV1beta1CollectionClusterRoleBin "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readRbacAuthorizationV1beta1ClusterRoleBinding { - /** name of the ClusterRoleBinding */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** name of the ClusterRoleBinding */ + name: string; } export interface Response$readRbacAuthorizationV1beta1ClusterRoleBinding$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1beta1$ClusterRoleBinding; @@ -27828,14 +27828,14 @@ export interface Response$readRbacAuthorizationV1beta1ClusterRoleBinding$Status$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1beta1$ClusterRoleBinding; } export interface Parameter$replaceRbacAuthorizationV1beta1ClusterRoleBinding { - /** name of the ClusterRoleBinding */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the ClusterRoleBinding */ + name: string; } export type RequestBody$replaceRbacAuthorizationV1beta1ClusterRoleBinding = RequestBodies.io$k8s$api$rbac$v1beta1$ClusterRoleBinding.Content; export interface Response$replaceRbacAuthorizationV1beta1ClusterRoleBinding$Status$200 { @@ -27849,8 +27849,6 @@ export interface Response$replaceRbacAuthorizationV1beta1ClusterRoleBinding$Stat "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1beta1$ClusterRoleBinding; } export interface Parameter$deleteRbacAuthorizationV1beta1ClusterRoleBinding { - /** name of the ClusterRoleBinding */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -27861,6 +27859,8 @@ export interface Parameter$deleteRbacAuthorizationV1beta1ClusterRoleBinding { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the ClusterRoleBinding */ + name: string; } export type RequestBody$deleteRbacAuthorizationV1beta1ClusterRoleBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteRbacAuthorizationV1beta1ClusterRoleBinding$Status$200 { @@ -27874,8 +27874,6 @@ export interface Response$deleteRbacAuthorizationV1beta1ClusterRoleBinding$Statu "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchRbacAuthorizationV1beta1ClusterRoleBinding { - /** name of the ClusterRoleBinding */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -27884,6 +27882,8 @@ export interface Parameter$patchRbacAuthorizationV1beta1ClusterRoleBinding { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the ClusterRoleBinding */ + name: string; } export type RequestBody$patchRbacAuthorizationV1beta1ClusterRoleBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchRbacAuthorizationV1beta1ClusterRoleBinding$Status$200 { @@ -27993,10 +27993,10 @@ export interface Response$deleteRbacAuthorizationV1beta1CollectionClusterRole$St "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readRbacAuthorizationV1beta1ClusterRole { - /** name of the ClusterRole */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** name of the ClusterRole */ + name: string; } export interface Response$readRbacAuthorizationV1beta1ClusterRole$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1beta1$ClusterRole; @@ -28004,14 +28004,14 @@ export interface Response$readRbacAuthorizationV1beta1ClusterRole$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1beta1$ClusterRole; } export interface Parameter$replaceRbacAuthorizationV1beta1ClusterRole { - /** name of the ClusterRole */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the ClusterRole */ + name: string; } export type RequestBody$replaceRbacAuthorizationV1beta1ClusterRole = RequestBodies.io$k8s$api$rbac$v1beta1$ClusterRole.Content; export interface Response$replaceRbacAuthorizationV1beta1ClusterRole$Status$200 { @@ -28025,8 +28025,6 @@ export interface Response$replaceRbacAuthorizationV1beta1ClusterRole$Status$201 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1beta1$ClusterRole; } export interface Parameter$deleteRbacAuthorizationV1beta1ClusterRole { - /** name of the ClusterRole */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -28037,6 +28035,8 @@ export interface Parameter$deleteRbacAuthorizationV1beta1ClusterRole { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the ClusterRole */ + name: string; } export type RequestBody$deleteRbacAuthorizationV1beta1ClusterRole = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteRbacAuthorizationV1beta1ClusterRole$Status$200 { @@ -28050,8 +28050,6 @@ export interface Response$deleteRbacAuthorizationV1beta1ClusterRole$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchRbacAuthorizationV1beta1ClusterRole { - /** name of the ClusterRole */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -28060,6 +28058,8 @@ export interface Parameter$patchRbacAuthorizationV1beta1ClusterRole { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the ClusterRole */ + name: string; } export type RequestBody$patchRbacAuthorizationV1beta1ClusterRole = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchRbacAuthorizationV1beta1ClusterRole$Status$200 { @@ -28068,8 +28068,6 @@ export interface Response$patchRbacAuthorizationV1beta1ClusterRole$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1beta1$ClusterRole; } export interface Parameter$listRbacAuthorizationV1beta1NamespacedRoleBinding { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -28096,6 +28094,8 @@ export interface Parameter$listRbacAuthorizationV1beta1NamespacedRoleBinding { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listRbacAuthorizationV1beta1NamespacedRoleBinding$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1beta1$RoleBindingList; @@ -28105,14 +28105,14 @@ export interface Response$listRbacAuthorizationV1beta1NamespacedRoleBinding$Stat "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$rbac$v1beta1$RoleBindingList; } export interface Parameter$createRbacAuthorizationV1beta1NamespacedRoleBinding { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createRbacAuthorizationV1beta1NamespacedRoleBinding = RequestBodies.io$k8s$api$rbac$v1beta1$RoleBinding.Content; export interface Response$createRbacAuthorizationV1beta1NamespacedRoleBinding$Status$200 { @@ -28131,8 +28131,6 @@ export interface Response$createRbacAuthorizationV1beta1NamespacedRoleBinding$St "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1beta1$RoleBinding; } export interface Parameter$deleteRbacAuthorizationV1beta1CollectionNamespacedRoleBinding { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -28167,6 +28165,8 @@ export interface Parameter$deleteRbacAuthorizationV1beta1CollectionNamespacedRol timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteRbacAuthorizationV1beta1CollectionNamespacedRoleBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteRbacAuthorizationV1beta1CollectionNamespacedRoleBinding$Status$200 { @@ -28175,12 +28175,12 @@ export interface Response$deleteRbacAuthorizationV1beta1CollectionNamespacedRole "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readRbacAuthorizationV1beta1NamespacedRoleBinding { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the RoleBinding */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readRbacAuthorizationV1beta1NamespacedRoleBinding$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1beta1$RoleBinding; @@ -28188,16 +28188,16 @@ export interface Response$readRbacAuthorizationV1beta1NamespacedRoleBinding$Stat "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1beta1$RoleBinding; } export interface Parameter$replaceRbacAuthorizationV1beta1NamespacedRoleBinding { - /** name of the RoleBinding */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the RoleBinding */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceRbacAuthorizationV1beta1NamespacedRoleBinding = RequestBodies.io$k8s$api$rbac$v1beta1$RoleBinding.Content; export interface Response$replaceRbacAuthorizationV1beta1NamespacedRoleBinding$Status$200 { @@ -28211,10 +28211,6 @@ export interface Response$replaceRbacAuthorizationV1beta1NamespacedRoleBinding$S "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1beta1$RoleBinding; } export interface Parameter$deleteRbacAuthorizationV1beta1NamespacedRoleBinding { - /** name of the RoleBinding */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -28225,6 +28221,10 @@ export interface Parameter$deleteRbacAuthorizationV1beta1NamespacedRoleBinding { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the RoleBinding */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteRbacAuthorizationV1beta1NamespacedRoleBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteRbacAuthorizationV1beta1NamespacedRoleBinding$Status$200 { @@ -28238,10 +28238,6 @@ export interface Response$deleteRbacAuthorizationV1beta1NamespacedRoleBinding$St "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchRbacAuthorizationV1beta1NamespacedRoleBinding { - /** name of the RoleBinding */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -28250,6 +28246,10 @@ export interface Parameter$patchRbacAuthorizationV1beta1NamespacedRoleBinding { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the RoleBinding */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchRbacAuthorizationV1beta1NamespacedRoleBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchRbacAuthorizationV1beta1NamespacedRoleBinding$Status$200 { @@ -28258,8 +28258,6 @@ export interface Response$patchRbacAuthorizationV1beta1NamespacedRoleBinding$Sta "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1beta1$RoleBinding; } export interface Parameter$listRbacAuthorizationV1beta1NamespacedRole { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -28286,6 +28284,8 @@ export interface Parameter$listRbacAuthorizationV1beta1NamespacedRole { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listRbacAuthorizationV1beta1NamespacedRole$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1beta1$RoleList; @@ -28295,14 +28295,14 @@ export interface Response$listRbacAuthorizationV1beta1NamespacedRole$Status$200 "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$rbac$v1beta1$RoleList; } export interface Parameter$createRbacAuthorizationV1beta1NamespacedRole { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createRbacAuthorizationV1beta1NamespacedRole = RequestBodies.io$k8s$api$rbac$v1beta1$Role.Content; export interface Response$createRbacAuthorizationV1beta1NamespacedRole$Status$200 { @@ -28321,8 +28321,6 @@ export interface Response$createRbacAuthorizationV1beta1NamespacedRole$Status$20 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1beta1$Role; } export interface Parameter$deleteRbacAuthorizationV1beta1CollectionNamespacedRole { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -28357,6 +28355,8 @@ export interface Parameter$deleteRbacAuthorizationV1beta1CollectionNamespacedRol timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteRbacAuthorizationV1beta1CollectionNamespacedRole = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteRbacAuthorizationV1beta1CollectionNamespacedRole$Status$200 { @@ -28365,12 +28365,12 @@ export interface Response$deleteRbacAuthorizationV1beta1CollectionNamespacedRole "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readRbacAuthorizationV1beta1NamespacedRole { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the Role */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readRbacAuthorizationV1beta1NamespacedRole$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1beta1$Role; @@ -28378,16 +28378,16 @@ export interface Response$readRbacAuthorizationV1beta1NamespacedRole$Status$200 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1beta1$Role; } export interface Parameter$replaceRbacAuthorizationV1beta1NamespacedRole { - /** name of the Role */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Role */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceRbacAuthorizationV1beta1NamespacedRole = RequestBodies.io$k8s$api$rbac$v1beta1$Role.Content; export interface Response$replaceRbacAuthorizationV1beta1NamespacedRole$Status$200 { @@ -28401,10 +28401,6 @@ export interface Response$replaceRbacAuthorizationV1beta1NamespacedRole$Status$2 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1beta1$Role; } export interface Parameter$deleteRbacAuthorizationV1beta1NamespacedRole { - /** name of the Role */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -28415,6 +28411,10 @@ export interface Parameter$deleteRbacAuthorizationV1beta1NamespacedRole { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the Role */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteRbacAuthorizationV1beta1NamespacedRole = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteRbacAuthorizationV1beta1NamespacedRole$Status$200 { @@ -28428,10 +28428,6 @@ export interface Response$deleteRbacAuthorizationV1beta1NamespacedRole$Status$20 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchRbacAuthorizationV1beta1NamespacedRole { - /** name of the Role */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -28440,6 +28436,10 @@ export interface Parameter$patchRbacAuthorizationV1beta1NamespacedRole { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Role */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchRbacAuthorizationV1beta1NamespacedRole = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchRbacAuthorizationV1beta1NamespacedRole$Status$200 { @@ -28571,8 +28571,6 @@ export interface Parameter$watchRbacAuthorizationV1beta1ClusterRoleBinding { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the ClusterRoleBinding */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -28581,6 +28579,8 @@ export interface Parameter$watchRbacAuthorizationV1beta1ClusterRoleBinding { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the ClusterRoleBinding */ + name: string; } export interface Response$watchRbacAuthorizationV1beta1ClusterRoleBinding$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -28643,8 +28643,6 @@ export interface Parameter$watchRbacAuthorizationV1beta1ClusterRole { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the ClusterRole */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -28653,6 +28651,8 @@ export interface Parameter$watchRbacAuthorizationV1beta1ClusterRole { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the ClusterRole */ + name: string; } export interface Response$watchRbacAuthorizationV1beta1ClusterRole$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -28680,8 +28680,6 @@ export interface Parameter$watchRbacAuthorizationV1beta1NamespacedRoleBindingLis * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -28690,6 +28688,8 @@ export interface Parameter$watchRbacAuthorizationV1beta1NamespacedRoleBindingLis timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchRbacAuthorizationV1beta1NamespacedRoleBindingList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -28717,10 +28717,6 @@ export interface Parameter$watchRbacAuthorizationV1beta1NamespacedRoleBinding { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the RoleBinding */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -28729,6 +28725,10 @@ export interface Parameter$watchRbacAuthorizationV1beta1NamespacedRoleBinding { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the RoleBinding */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchRbacAuthorizationV1beta1NamespacedRoleBinding$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -28756,8 +28756,6 @@ export interface Parameter$watchRbacAuthorizationV1beta1NamespacedRoleList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -28766,6 +28764,8 @@ export interface Parameter$watchRbacAuthorizationV1beta1NamespacedRoleList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchRbacAuthorizationV1beta1NamespacedRoleList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -28793,10 +28793,6 @@ export interface Parameter$watchRbacAuthorizationV1beta1NamespacedRole { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the Role */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -28805,6 +28801,10 @@ export interface Parameter$watchRbacAuthorizationV1beta1NamespacedRole { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the Role */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchRbacAuthorizationV1beta1NamespacedRole$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -28995,14 +28995,14 @@ export interface Response$deleteSchedulingV1CollectionPriorityClass$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readSchedulingV1PriorityClass { - /** name of the PriorityClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the PriorityClass */ + name: string; } export interface Response$readSchedulingV1PriorityClass$Status$200 { "application/json": Schemas.io$k8s$api$scheduling$v1$PriorityClass; @@ -29010,14 +29010,14 @@ export interface Response$readSchedulingV1PriorityClass$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$scheduling$v1$PriorityClass; } export interface Parameter$replaceSchedulingV1PriorityClass { - /** name of the PriorityClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the PriorityClass */ + name: string; } export type RequestBody$replaceSchedulingV1PriorityClass = RequestBodies.io$k8s$api$scheduling$v1$PriorityClass.Content; export interface Response$replaceSchedulingV1PriorityClass$Status$200 { @@ -29031,8 +29031,6 @@ export interface Response$replaceSchedulingV1PriorityClass$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$scheduling$v1$PriorityClass; } export interface Parameter$deleteSchedulingV1PriorityClass { - /** name of the PriorityClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -29043,6 +29041,8 @@ export interface Parameter$deleteSchedulingV1PriorityClass { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the PriorityClass */ + name: string; } export type RequestBody$deleteSchedulingV1PriorityClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteSchedulingV1PriorityClass$Status$200 { @@ -29056,8 +29056,6 @@ export interface Response$deleteSchedulingV1PriorityClass$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchSchedulingV1PriorityClass { - /** name of the PriorityClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -29066,6 +29064,8 @@ export interface Parameter$patchSchedulingV1PriorityClass { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the PriorityClass */ + name: string; } export type RequestBody$patchSchedulingV1PriorityClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchSchedulingV1PriorityClass$Status$200 { @@ -29127,8 +29127,6 @@ export interface Parameter$watchSchedulingV1PriorityClass { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the PriorityClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -29137,6 +29135,8 @@ export interface Parameter$watchSchedulingV1PriorityClass { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the PriorityClass */ + name: string; } export interface Response$watchSchedulingV1PriorityClass$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -29252,14 +29252,14 @@ export interface Response$deleteSchedulingV1alpha1CollectionPriorityClass$Status "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readSchedulingV1alpha1PriorityClass { - /** name of the PriorityClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the PriorityClass */ + name: string; } export interface Response$readSchedulingV1alpha1PriorityClass$Status$200 { "application/json": Schemas.io$k8s$api$scheduling$v1alpha1$PriorityClass; @@ -29267,14 +29267,14 @@ export interface Response$readSchedulingV1alpha1PriorityClass$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$scheduling$v1alpha1$PriorityClass; } export interface Parameter$replaceSchedulingV1alpha1PriorityClass { - /** name of the PriorityClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the PriorityClass */ + name: string; } export type RequestBody$replaceSchedulingV1alpha1PriorityClass = RequestBodies.io$k8s$api$scheduling$v1alpha1$PriorityClass.Content; export interface Response$replaceSchedulingV1alpha1PriorityClass$Status$200 { @@ -29288,8 +29288,6 @@ export interface Response$replaceSchedulingV1alpha1PriorityClass$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$scheduling$v1alpha1$PriorityClass; } export interface Parameter$deleteSchedulingV1alpha1PriorityClass { - /** name of the PriorityClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -29300,6 +29298,8 @@ export interface Parameter$deleteSchedulingV1alpha1PriorityClass { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the PriorityClass */ + name: string; } export type RequestBody$deleteSchedulingV1alpha1PriorityClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteSchedulingV1alpha1PriorityClass$Status$200 { @@ -29313,8 +29313,6 @@ export interface Response$deleteSchedulingV1alpha1PriorityClass$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchSchedulingV1alpha1PriorityClass { - /** name of the PriorityClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -29323,6 +29321,8 @@ export interface Parameter$patchSchedulingV1alpha1PriorityClass { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the PriorityClass */ + name: string; } export type RequestBody$patchSchedulingV1alpha1PriorityClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchSchedulingV1alpha1PriorityClass$Status$200 { @@ -29384,8 +29384,6 @@ export interface Parameter$watchSchedulingV1alpha1PriorityClass { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the PriorityClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -29394,6 +29392,8 @@ export interface Parameter$watchSchedulingV1alpha1PriorityClass { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the PriorityClass */ + name: string; } export interface Response$watchSchedulingV1alpha1PriorityClass$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -29509,14 +29509,14 @@ export interface Response$deleteSchedulingV1beta1CollectionPriorityClass$Status$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readSchedulingV1beta1PriorityClass { - /** name of the PriorityClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the PriorityClass */ + name: string; } export interface Response$readSchedulingV1beta1PriorityClass$Status$200 { "application/json": Schemas.io$k8s$api$scheduling$v1beta1$PriorityClass; @@ -29524,14 +29524,14 @@ export interface Response$readSchedulingV1beta1PriorityClass$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$scheduling$v1beta1$PriorityClass; } export interface Parameter$replaceSchedulingV1beta1PriorityClass { - /** name of the PriorityClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the PriorityClass */ + name: string; } export type RequestBody$replaceSchedulingV1beta1PriorityClass = RequestBodies.io$k8s$api$scheduling$v1beta1$PriorityClass.Content; export interface Response$replaceSchedulingV1beta1PriorityClass$Status$200 { @@ -29545,8 +29545,6 @@ export interface Response$replaceSchedulingV1beta1PriorityClass$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$scheduling$v1beta1$PriorityClass; } export interface Parameter$deleteSchedulingV1beta1PriorityClass { - /** name of the PriorityClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -29557,6 +29555,8 @@ export interface Parameter$deleteSchedulingV1beta1PriorityClass { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the PriorityClass */ + name: string; } export type RequestBody$deleteSchedulingV1beta1PriorityClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteSchedulingV1beta1PriorityClass$Status$200 { @@ -29570,8 +29570,6 @@ export interface Response$deleteSchedulingV1beta1PriorityClass$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchSchedulingV1beta1PriorityClass { - /** name of the PriorityClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -29580,6 +29578,8 @@ export interface Parameter$patchSchedulingV1beta1PriorityClass { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the PriorityClass */ + name: string; } export type RequestBody$patchSchedulingV1beta1PriorityClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchSchedulingV1beta1PriorityClass$Status$200 { @@ -29641,8 +29641,6 @@ export interface Parameter$watchSchedulingV1beta1PriorityClass { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the PriorityClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -29651,6 +29649,8 @@ export interface Parameter$watchSchedulingV1beta1PriorityClass { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the PriorityClass */ + name: string; } export interface Response$watchSchedulingV1beta1PriorityClass$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -29670,8 +29670,6 @@ export interface Response$getSettingsV1alpha1APIResources$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; } export interface Parameter$listSettingsV1alpha1NamespacedPodPreset { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -29698,6 +29696,8 @@ export interface Parameter$listSettingsV1alpha1NamespacedPodPreset { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listSettingsV1alpha1NamespacedPodPreset$Status$200 { "application/json": Schemas.io$k8s$api$settings$v1alpha1$PodPresetList; @@ -29707,14 +29707,14 @@ export interface Response$listSettingsV1alpha1NamespacedPodPreset$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$settings$v1alpha1$PodPresetList; } export interface Parameter$createSettingsV1alpha1NamespacedPodPreset { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createSettingsV1alpha1NamespacedPodPreset = RequestBodies.io$k8s$api$settings$v1alpha1$PodPreset.Content; export interface Response$createSettingsV1alpha1NamespacedPodPreset$Status$200 { @@ -29733,8 +29733,6 @@ export interface Response$createSettingsV1alpha1NamespacedPodPreset$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$settings$v1alpha1$PodPreset; } export interface Parameter$deleteSettingsV1alpha1CollectionNamespacedPodPreset { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -29769,6 +29767,8 @@ export interface Parameter$deleteSettingsV1alpha1CollectionNamespacedPodPreset { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteSettingsV1alpha1CollectionNamespacedPodPreset = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteSettingsV1alpha1CollectionNamespacedPodPreset$Status$200 { @@ -29777,16 +29777,16 @@ export interface Response$deleteSettingsV1alpha1CollectionNamespacedPodPreset$St "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readSettingsV1alpha1NamespacedPodPreset { - /** name of the PodPreset */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the PodPreset */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readSettingsV1alpha1NamespacedPodPreset$Status$200 { "application/json": Schemas.io$k8s$api$settings$v1alpha1$PodPreset; @@ -29794,16 +29794,16 @@ export interface Response$readSettingsV1alpha1NamespacedPodPreset$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$settings$v1alpha1$PodPreset; } export interface Parameter$replaceSettingsV1alpha1NamespacedPodPreset { - /** name of the PodPreset */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the PodPreset */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceSettingsV1alpha1NamespacedPodPreset = RequestBodies.io$k8s$api$settings$v1alpha1$PodPreset.Content; export interface Response$replaceSettingsV1alpha1NamespacedPodPreset$Status$200 { @@ -29817,10 +29817,6 @@ export interface Response$replaceSettingsV1alpha1NamespacedPodPreset$Status$201 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$settings$v1alpha1$PodPreset; } export interface Parameter$deleteSettingsV1alpha1NamespacedPodPreset { - /** name of the PodPreset */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -29831,6 +29827,10 @@ export interface Parameter$deleteSettingsV1alpha1NamespacedPodPreset { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the PodPreset */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteSettingsV1alpha1NamespacedPodPreset = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteSettingsV1alpha1NamespacedPodPreset$Status$200 { @@ -29844,10 +29844,6 @@ export interface Response$deleteSettingsV1alpha1NamespacedPodPreset$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchSettingsV1alpha1NamespacedPodPreset { - /** name of the PodPreset */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -29856,6 +29852,10 @@ export interface Parameter$patchSettingsV1alpha1NamespacedPodPreset { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the PodPreset */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchSettingsV1alpha1NamespacedPodPreset = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchSettingsV1alpha1NamespacedPodPreset$Status$200 { @@ -29917,8 +29917,6 @@ export interface Parameter$watchSettingsV1alpha1NamespacedPodPresetList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -29927,6 +29925,8 @@ export interface Parameter$watchSettingsV1alpha1NamespacedPodPresetList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchSettingsV1alpha1NamespacedPodPresetList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -29954,10 +29954,6 @@ export interface Parameter$watchSettingsV1alpha1NamespacedPodPreset { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the PodPreset */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -29966,6 +29962,10 @@ export interface Parameter$watchSettingsV1alpha1NamespacedPodPreset { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the PodPreset */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchSettingsV1alpha1NamespacedPodPreset$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -30121,14 +30121,14 @@ export interface Response$deleteStorageV1CollectionCSIDriver$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readStorageV1CSIDriver { - /** name of the CSIDriver */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the CSIDriver */ + name: string; } export interface Response$readStorageV1CSIDriver$Status$200 { "application/json": Schemas.io$k8s$api$storage$v1$CSIDriver; @@ -30136,14 +30136,14 @@ export interface Response$readStorageV1CSIDriver$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSIDriver; } export interface Parameter$replaceStorageV1CSIDriver { - /** name of the CSIDriver */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the CSIDriver */ + name: string; } export type RequestBody$replaceStorageV1CSIDriver = RequestBodies.io$k8s$api$storage$v1$CSIDriver.Content; export interface Response$replaceStorageV1CSIDriver$Status$200 { @@ -30157,8 +30157,6 @@ export interface Response$replaceStorageV1CSIDriver$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSIDriver; } export interface Parameter$deleteStorageV1CSIDriver { - /** name of the CSIDriver */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -30169,6 +30167,8 @@ export interface Parameter$deleteStorageV1CSIDriver { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the CSIDriver */ + name: string; } export type RequestBody$deleteStorageV1CSIDriver = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteStorageV1CSIDriver$Status$200 { @@ -30182,8 +30182,6 @@ export interface Response$deleteStorageV1CSIDriver$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSIDriver; } export interface Parameter$patchStorageV1CSIDriver { - /** name of the CSIDriver */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -30192,6 +30190,8 @@ export interface Parameter$patchStorageV1CSIDriver { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the CSIDriver */ + name: string; } export type RequestBody$patchStorageV1CSIDriver = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchStorageV1CSIDriver$Status$200 { @@ -30301,14 +30301,14 @@ export interface Response$deleteStorageV1CollectionCSINode$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readStorageV1CSINode { - /** name of the CSINode */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the CSINode */ + name: string; } export interface Response$readStorageV1CSINode$Status$200 { "application/json": Schemas.io$k8s$api$storage$v1$CSINode; @@ -30316,14 +30316,14 @@ export interface Response$readStorageV1CSINode$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSINode; } export interface Parameter$replaceStorageV1CSINode { - /** name of the CSINode */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the CSINode */ + name: string; } export type RequestBody$replaceStorageV1CSINode = RequestBodies.io$k8s$api$storage$v1$CSINode.Content; export interface Response$replaceStorageV1CSINode$Status$200 { @@ -30337,8 +30337,6 @@ export interface Response$replaceStorageV1CSINode$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSINode; } export interface Parameter$deleteStorageV1CSINode { - /** name of the CSINode */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -30349,6 +30347,8 @@ export interface Parameter$deleteStorageV1CSINode { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the CSINode */ + name: string; } export type RequestBody$deleteStorageV1CSINode = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteStorageV1CSINode$Status$200 { @@ -30362,8 +30362,6 @@ export interface Response$deleteStorageV1CSINode$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSINode; } export interface Parameter$patchStorageV1CSINode { - /** name of the CSINode */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -30372,6 +30370,8 @@ export interface Parameter$patchStorageV1CSINode { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the CSINode */ + name: string; } export type RequestBody$patchStorageV1CSINode = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchStorageV1CSINode$Status$200 { @@ -30481,14 +30481,14 @@ export interface Response$deleteStorageV1CollectionStorageClass$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readStorageV1StorageClass { - /** name of the StorageClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the StorageClass */ + name: string; } export interface Response$readStorageV1StorageClass$Status$200 { "application/json": Schemas.io$k8s$api$storage$v1$StorageClass; @@ -30496,14 +30496,14 @@ export interface Response$readStorageV1StorageClass$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$StorageClass; } export interface Parameter$replaceStorageV1StorageClass { - /** name of the StorageClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the StorageClass */ + name: string; } export type RequestBody$replaceStorageV1StorageClass = RequestBodies.io$k8s$api$storage$v1$StorageClass.Content; export interface Response$replaceStorageV1StorageClass$Status$200 { @@ -30517,8 +30517,6 @@ export interface Response$replaceStorageV1StorageClass$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$StorageClass; } export interface Parameter$deleteStorageV1StorageClass { - /** name of the StorageClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -30529,6 +30527,8 @@ export interface Parameter$deleteStorageV1StorageClass { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the StorageClass */ + name: string; } export type RequestBody$deleteStorageV1StorageClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteStorageV1StorageClass$Status$200 { @@ -30542,8 +30542,6 @@ export interface Response$deleteStorageV1StorageClass$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$StorageClass; } export interface Parameter$patchStorageV1StorageClass { - /** name of the StorageClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -30552,6 +30550,8 @@ export interface Parameter$patchStorageV1StorageClass { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the StorageClass */ + name: string; } export type RequestBody$patchStorageV1StorageClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchStorageV1StorageClass$Status$200 { @@ -30661,14 +30661,14 @@ export interface Response$deleteStorageV1CollectionVolumeAttachment$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readStorageV1VolumeAttachment { - /** name of the VolumeAttachment */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the VolumeAttachment */ + name: string; } export interface Response$readStorageV1VolumeAttachment$Status$200 { "application/json": Schemas.io$k8s$api$storage$v1$VolumeAttachment; @@ -30676,14 +30676,14 @@ export interface Response$readStorageV1VolumeAttachment$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$VolumeAttachment; } export interface Parameter$replaceStorageV1VolumeAttachment { - /** name of the VolumeAttachment */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the VolumeAttachment */ + name: string; } export type RequestBody$replaceStorageV1VolumeAttachment = RequestBodies.io$k8s$api$storage$v1$VolumeAttachment.Content; export interface Response$replaceStorageV1VolumeAttachment$Status$200 { @@ -30697,8 +30697,6 @@ export interface Response$replaceStorageV1VolumeAttachment$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$VolumeAttachment; } export interface Parameter$deleteStorageV1VolumeAttachment { - /** name of the VolumeAttachment */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -30709,6 +30707,8 @@ export interface Parameter$deleteStorageV1VolumeAttachment { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the VolumeAttachment */ + name: string; } export type RequestBody$deleteStorageV1VolumeAttachment = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteStorageV1VolumeAttachment$Status$200 { @@ -30722,8 +30722,6 @@ export interface Response$deleteStorageV1VolumeAttachment$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$VolumeAttachment; } export interface Parameter$patchStorageV1VolumeAttachment { - /** name of the VolumeAttachment */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -30732,6 +30730,8 @@ export interface Parameter$patchStorageV1VolumeAttachment { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the VolumeAttachment */ + name: string; } export type RequestBody$patchStorageV1VolumeAttachment = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchStorageV1VolumeAttachment$Status$200 { @@ -30740,10 +30740,10 @@ export interface Response$patchStorageV1VolumeAttachment$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$VolumeAttachment; } export interface Parameter$readStorageV1VolumeAttachmentStatus { - /** name of the VolumeAttachment */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** name of the VolumeAttachment */ + name: string; } export interface Response$readStorageV1VolumeAttachmentStatus$Status$200 { "application/json": Schemas.io$k8s$api$storage$v1$VolumeAttachment; @@ -30751,14 +30751,14 @@ export interface Response$readStorageV1VolumeAttachmentStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$VolumeAttachment; } export interface Parameter$replaceStorageV1VolumeAttachmentStatus { - /** name of the VolumeAttachment */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the VolumeAttachment */ + name: string; } export type RequestBody$replaceStorageV1VolumeAttachmentStatus = RequestBodies.io$k8s$api$storage$v1$VolumeAttachment.Content; export interface Response$replaceStorageV1VolumeAttachmentStatus$Status$200 { @@ -30772,8 +30772,6 @@ export interface Response$replaceStorageV1VolumeAttachmentStatus$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$VolumeAttachment; } export interface Parameter$patchStorageV1VolumeAttachmentStatus { - /** name of the VolumeAttachment */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -30782,6 +30780,8 @@ export interface Parameter$patchStorageV1VolumeAttachmentStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the VolumeAttachment */ + name: string; } export type RequestBody$patchStorageV1VolumeAttachmentStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchStorageV1VolumeAttachmentStatus$Status$200 { @@ -30843,8 +30843,6 @@ export interface Parameter$watchStorageV1CSIDriver { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the CSIDriver */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -30853,6 +30851,8 @@ export interface Parameter$watchStorageV1CSIDriver { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the CSIDriver */ + name: string; } export interface Response$watchStorageV1CSIDriver$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -30915,8 +30915,6 @@ export interface Parameter$watchStorageV1CSINode { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the CSINode */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -30925,6 +30923,8 @@ export interface Parameter$watchStorageV1CSINode { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the CSINode */ + name: string; } export interface Response$watchStorageV1CSINode$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -30987,8 +30987,6 @@ export interface Parameter$watchStorageV1StorageClass { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the StorageClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -30997,6 +30995,8 @@ export interface Parameter$watchStorageV1StorageClass { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the StorageClass */ + name: string; } export interface Response$watchStorageV1StorageClass$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -31059,8 +31059,6 @@ export interface Parameter$watchStorageV1VolumeAttachment { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the VolumeAttachment */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -31069,6 +31067,8 @@ export interface Parameter$watchStorageV1VolumeAttachment { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the VolumeAttachment */ + name: string; } export interface Response$watchStorageV1VolumeAttachment$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -31184,14 +31184,14 @@ export interface Response$deleteStorageV1alpha1CollectionVolumeAttachment$Status "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readStorageV1alpha1VolumeAttachment { - /** name of the VolumeAttachment */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the VolumeAttachment */ + name: string; } export interface Response$readStorageV1alpha1VolumeAttachment$Status$200 { "application/json": Schemas.io$k8s$api$storage$v1alpha1$VolumeAttachment; @@ -31199,14 +31199,14 @@ export interface Response$readStorageV1alpha1VolumeAttachment$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1alpha1$VolumeAttachment; } export interface Parameter$replaceStorageV1alpha1VolumeAttachment { - /** name of the VolumeAttachment */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the VolumeAttachment */ + name: string; } export type RequestBody$replaceStorageV1alpha1VolumeAttachment = RequestBodies.io$k8s$api$storage$v1alpha1$VolumeAttachment.Content; export interface Response$replaceStorageV1alpha1VolumeAttachment$Status$200 { @@ -31220,8 +31220,6 @@ export interface Response$replaceStorageV1alpha1VolumeAttachment$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1alpha1$VolumeAttachment; } export interface Parameter$deleteStorageV1alpha1VolumeAttachment { - /** name of the VolumeAttachment */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -31232,6 +31230,8 @@ export interface Parameter$deleteStorageV1alpha1VolumeAttachment { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the VolumeAttachment */ + name: string; } export type RequestBody$deleteStorageV1alpha1VolumeAttachment = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteStorageV1alpha1VolumeAttachment$Status$200 { @@ -31245,8 +31245,6 @@ export interface Response$deleteStorageV1alpha1VolumeAttachment$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1alpha1$VolumeAttachment; } export interface Parameter$patchStorageV1alpha1VolumeAttachment { - /** name of the VolumeAttachment */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -31255,6 +31253,8 @@ export interface Parameter$patchStorageV1alpha1VolumeAttachment { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the VolumeAttachment */ + name: string; } export type RequestBody$patchStorageV1alpha1VolumeAttachment = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchStorageV1alpha1VolumeAttachment$Status$200 { @@ -31316,8 +31316,6 @@ export interface Parameter$watchStorageV1alpha1VolumeAttachment { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the VolumeAttachment */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -31326,6 +31324,8 @@ export interface Parameter$watchStorageV1alpha1VolumeAttachment { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the VolumeAttachment */ + name: string; } export interface Response$watchStorageV1alpha1VolumeAttachment$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -31441,14 +31441,14 @@ export interface Response$deleteStorageV1beta1CollectionCSIDriver$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readStorageV1beta1CSIDriver { - /** name of the CSIDriver */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the CSIDriver */ + name: string; } export interface Response$readStorageV1beta1CSIDriver$Status$200 { "application/json": Schemas.io$k8s$api$storage$v1beta1$CSIDriver; @@ -31456,14 +31456,14 @@ export interface Response$readStorageV1beta1CSIDriver$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1beta1$CSIDriver; } export interface Parameter$replaceStorageV1beta1CSIDriver { - /** name of the CSIDriver */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the CSIDriver */ + name: string; } export type RequestBody$replaceStorageV1beta1CSIDriver = RequestBodies.io$k8s$api$storage$v1beta1$CSIDriver.Content; export interface Response$replaceStorageV1beta1CSIDriver$Status$200 { @@ -31477,8 +31477,6 @@ export interface Response$replaceStorageV1beta1CSIDriver$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1beta1$CSIDriver; } export interface Parameter$deleteStorageV1beta1CSIDriver { - /** name of the CSIDriver */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -31489,6 +31487,8 @@ export interface Parameter$deleteStorageV1beta1CSIDriver { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the CSIDriver */ + name: string; } export type RequestBody$deleteStorageV1beta1CSIDriver = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteStorageV1beta1CSIDriver$Status$200 { @@ -31502,8 +31502,6 @@ export interface Response$deleteStorageV1beta1CSIDriver$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1beta1$CSIDriver; } export interface Parameter$patchStorageV1beta1CSIDriver { - /** name of the CSIDriver */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -31512,6 +31510,8 @@ export interface Parameter$patchStorageV1beta1CSIDriver { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the CSIDriver */ + name: string; } export type RequestBody$patchStorageV1beta1CSIDriver = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchStorageV1beta1CSIDriver$Status$200 { @@ -31621,14 +31621,14 @@ export interface Response$deleteStorageV1beta1CollectionCSINode$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readStorageV1beta1CSINode { - /** name of the CSINode */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the CSINode */ + name: string; } export interface Response$readStorageV1beta1CSINode$Status$200 { "application/json": Schemas.io$k8s$api$storage$v1beta1$CSINode; @@ -31636,14 +31636,14 @@ export interface Response$readStorageV1beta1CSINode$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1beta1$CSINode; } export interface Parameter$replaceStorageV1beta1CSINode { - /** name of the CSINode */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the CSINode */ + name: string; } export type RequestBody$replaceStorageV1beta1CSINode = RequestBodies.io$k8s$api$storage$v1beta1$CSINode.Content; export interface Response$replaceStorageV1beta1CSINode$Status$200 { @@ -31657,8 +31657,6 @@ export interface Response$replaceStorageV1beta1CSINode$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1beta1$CSINode; } export interface Parameter$deleteStorageV1beta1CSINode { - /** name of the CSINode */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -31669,6 +31667,8 @@ export interface Parameter$deleteStorageV1beta1CSINode { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the CSINode */ + name: string; } export type RequestBody$deleteStorageV1beta1CSINode = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteStorageV1beta1CSINode$Status$200 { @@ -31682,8 +31682,6 @@ export interface Response$deleteStorageV1beta1CSINode$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1beta1$CSINode; } export interface Parameter$patchStorageV1beta1CSINode { - /** name of the CSINode */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -31692,6 +31690,8 @@ export interface Parameter$patchStorageV1beta1CSINode { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the CSINode */ + name: string; } export type RequestBody$patchStorageV1beta1CSINode = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchStorageV1beta1CSINode$Status$200 { @@ -31801,14 +31801,14 @@ export interface Response$deleteStorageV1beta1CollectionStorageClass$Status$200 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readStorageV1beta1StorageClass { - /** name of the StorageClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the StorageClass */ + name: string; } export interface Response$readStorageV1beta1StorageClass$Status$200 { "application/json": Schemas.io$k8s$api$storage$v1beta1$StorageClass; @@ -31816,14 +31816,14 @@ export interface Response$readStorageV1beta1StorageClass$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1beta1$StorageClass; } export interface Parameter$replaceStorageV1beta1StorageClass { - /** name of the StorageClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the StorageClass */ + name: string; } export type RequestBody$replaceStorageV1beta1StorageClass = RequestBodies.io$k8s$api$storage$v1beta1$StorageClass.Content; export interface Response$replaceStorageV1beta1StorageClass$Status$200 { @@ -31837,8 +31837,6 @@ export interface Response$replaceStorageV1beta1StorageClass$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1beta1$StorageClass; } export interface Parameter$deleteStorageV1beta1StorageClass { - /** name of the StorageClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -31849,6 +31847,8 @@ export interface Parameter$deleteStorageV1beta1StorageClass { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the StorageClass */ + name: string; } export type RequestBody$deleteStorageV1beta1StorageClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteStorageV1beta1StorageClass$Status$200 { @@ -31862,8 +31862,6 @@ export interface Response$deleteStorageV1beta1StorageClass$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1beta1$StorageClass; } export interface Parameter$patchStorageV1beta1StorageClass { - /** name of the StorageClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -31872,6 +31870,8 @@ export interface Parameter$patchStorageV1beta1StorageClass { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the StorageClass */ + name: string; } export type RequestBody$patchStorageV1beta1StorageClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchStorageV1beta1StorageClass$Status$200 { @@ -31981,14 +31981,14 @@ export interface Response$deleteStorageV1beta1CollectionVolumeAttachment$Status$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readStorageV1beta1VolumeAttachment { - /** name of the VolumeAttachment */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the VolumeAttachment */ + name: string; } export interface Response$readStorageV1beta1VolumeAttachment$Status$200 { "application/json": Schemas.io$k8s$api$storage$v1beta1$VolumeAttachment; @@ -31996,14 +31996,14 @@ export interface Response$readStorageV1beta1VolumeAttachment$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1beta1$VolumeAttachment; } export interface Parameter$replaceStorageV1beta1VolumeAttachment { - /** name of the VolumeAttachment */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the VolumeAttachment */ + name: string; } export type RequestBody$replaceStorageV1beta1VolumeAttachment = RequestBodies.io$k8s$api$storage$v1beta1$VolumeAttachment.Content; export interface Response$replaceStorageV1beta1VolumeAttachment$Status$200 { @@ -32017,8 +32017,6 @@ export interface Response$replaceStorageV1beta1VolumeAttachment$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1beta1$VolumeAttachment; } export interface Parameter$deleteStorageV1beta1VolumeAttachment { - /** name of the VolumeAttachment */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -32029,6 +32027,8 @@ export interface Parameter$deleteStorageV1beta1VolumeAttachment { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the VolumeAttachment */ + name: string; } export type RequestBody$deleteStorageV1beta1VolumeAttachment = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteStorageV1beta1VolumeAttachment$Status$200 { @@ -32042,8 +32042,6 @@ export interface Response$deleteStorageV1beta1VolumeAttachment$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1beta1$VolumeAttachment; } export interface Parameter$patchStorageV1beta1VolumeAttachment { - /** name of the VolumeAttachment */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -32052,6 +32050,8 @@ export interface Parameter$patchStorageV1beta1VolumeAttachment { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the VolumeAttachment */ + name: string; } export type RequestBody$patchStorageV1beta1VolumeAttachment = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchStorageV1beta1VolumeAttachment$Status$200 { @@ -32113,8 +32113,6 @@ export interface Parameter$watchStorageV1beta1CSIDriver { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the CSIDriver */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -32123,6 +32121,8 @@ export interface Parameter$watchStorageV1beta1CSIDriver { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the CSIDriver */ + name: string; } export interface Response$watchStorageV1beta1CSIDriver$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -32185,8 +32185,6 @@ export interface Parameter$watchStorageV1beta1CSINode { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the CSINode */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -32195,6 +32193,8 @@ export interface Parameter$watchStorageV1beta1CSINode { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the CSINode */ + name: string; } export interface Response$watchStorageV1beta1CSINode$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -32257,8 +32257,6 @@ export interface Parameter$watchStorageV1beta1StorageClass { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the StorageClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -32267,6 +32265,8 @@ export interface Parameter$watchStorageV1beta1StorageClass { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the StorageClass */ + name: string; } export interface Response$watchStorageV1beta1StorageClass$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -32329,8 +32329,6 @@ export interface Parameter$watchStorageV1beta1VolumeAttachment { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the VolumeAttachment */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -32339,6 +32337,8 @@ export interface Parameter$watchStorageV1beta1VolumeAttachment { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the VolumeAttachment */ + name: string; } export interface Response$watchStorageV1beta1VolumeAttachment$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; diff --git a/test/__tests__/class/__snapshots__/spit-code-test.ts.snap b/test/__tests__/class/__snapshots__/spit-code-test.ts.snap index 013c0fd..a05da2d 100644 --- a/test/__tests__/class/__snapshots__/spit-code-test.ts.snap +++ b/test/__tests__/class/__snapshots__/spit-code-test.ts.snap @@ -48,8 +48,8 @@ export interface Response$getReferenceItems$Status$200 { }; } export interface Parameter$searchBook { - "book.name": string; "from.publishedAt"?: number; + "book.name": string; } export interface Response$searchBook$Status$200 { "application/json": { diff --git a/test/__tests__/class/__snapshots__/typedef-with-template-test.ts.snap b/test/__tests__/class/__snapshots__/typedef-with-template-test.ts.snap index 1e665c2..aeae5ca 100644 --- a/test/__tests__/class/__snapshots__/typedef-with-template-test.ts.snap +++ b/test/__tests__/class/__snapshots__/typedef-with-template-test.ts.snap @@ -334,8 +334,8 @@ export interface Response$getReferenceItems$Status$200 { }; } export interface Parameter$searchBook { - "book.name": string; "from.publishedAt"?: number; + "book.name": string; } export interface Response$searchBook$Status$200 { "application/json": { @@ -1004,8 +1004,8 @@ export interface Response$getReferenceItems$Status$200 { }; } export interface Parameter$searchBook { - "book.name": string; "from.publishedAt"?: number; + "book.name": string; } export interface Response$searchBook$Status$200 { "application/json": { @@ -1757,20 +1757,20 @@ export interface Response$getItemById$Status$200 { }; } export interface Parameter$getNodeProxyWithPath { + path: string; name: string; - path?: string; } export interface Response$getNodeProxyWithPath$Status$200 { "application/json": string; } export interface Parameter$headNodeProxyWithPath { + path: string; name: string; - path?: string; } export interface Parameter$getUserPost { + include?: string; userId: string; postId: number; - include?: string; } export interface Response$getUserPost$Status$200 { "application/json": { diff --git a/test/__tests__/currying-functional/__snapshots__/coudflare-test.ts.snap b/test/__tests__/currying-functional/__snapshots__/coudflare-test.ts.snap index c7df42e..8420161 100644 --- a/test/__tests__/currying-functional/__snapshots__/coudflare-test.ts.snap +++ b/test/__tests__/currying-functional/__snapshots__/coudflare-test.ts.snap @@ -19033,11 +19033,11 @@ export interface Response$notification$webhooks$delete$a$webhook$Status$4XX { "application/json": Schemas.w2PBr26F_api$response$collection & Schemas.w2PBr26F_api$response$common$failure; } export interface Parameter$notification$history$list$history { - account_id: Schemas.w2PBr26F_account$id; per_page?: Schemas.w2PBr26F_per_page; before?: Schemas.w2PBr26F_before; page?: number; since?: Date; + account_id: Schemas.w2PBr26F_account$id; } export interface Response$notification$history$list$history$Status$200 { "application/json": Schemas.w2PBr26F_history_components$schemas$response_collection; @@ -19126,9 +19126,9 @@ export interface Response$phishing$url$scanner$submit$suspicious$url$for$scannin "application/json": Schemas.intel_phishing$url$submit_components$schemas$single_response & Schemas.intel_api$response$common$failure; } export interface Parameter$phishing$url$information$get$results$for$a$url$scan { - account_id: Schemas.intel_identifier; url_id_param?: Schemas.intel_url_id_param; url?: string; + account_id: Schemas.intel_identifier; } export interface Response$phishing$url$information$get$results$for$a$url$scan$Status$200 { "application/json": Schemas.intel_phishing$url$info_components$schemas$single_response; @@ -19137,7 +19137,6 @@ export interface Response$phishing$url$information$get$results$for$a$url$scan$St "application/json": Schemas.intel_phishing$url$info_components$schemas$single_response & Schemas.intel_api$response$common$failure; } export interface Parameter$cloudflare$tunnel$list$cloudflare$tunnels { - account_id: Schemas.tunnel_cf_account_id; name?: string; is_deleted?: boolean; existed_at?: Schemas.tunnel_existed_at; @@ -19148,6 +19147,7 @@ export interface Parameter$cloudflare$tunnel$list$cloudflare$tunnels { exclude_prefix?: string; per_page?: Schemas.tunnel_per_page; page?: number; + account_id: Schemas.tunnel_cf_account_id; } export interface Response$cloudflare$tunnel$list$cloudflare$tunnels$Status$200 { "application/json": Schemas.tunnel_tunnel$response$collection; @@ -19246,9 +19246,9 @@ export interface Response$cloudflare$tunnel$list$cloudflare$tunnel$connections$S "application/json": Schemas.tunnel_tunnel_connections_response & Schemas.tunnel_api$response$common$failure; } export interface Parameter$cloudflare$tunnel$clean$up$cloudflare$tunnel$connections { + client_id?: string; account_id: Schemas.tunnel_cf_account_id; tunnel_id: Schemas.tunnel_tunnel_id; - client_id?: string; } export interface RequestBody$cloudflare$tunnel$clean$up$cloudflare$tunnel$connections { "application/json": {}; @@ -19345,10 +19345,10 @@ export interface Response$account$level$custom$nameservers$verify$account$custom "application/json": Schemas.dns$custom$nameservers_acns_response_collection & Schemas.dns$custom$nameservers_api$response$common$failure; } export interface Parameter$cloudflare$d1$list$databases { - account_id: Schemas.d1_account$identifier; name?: string; page?: number; per_page?: number; + account_id: Schemas.d1_account$identifier; } export interface Response$cloudflare$d1$list$databases$Status$200 { "application/json": Schemas.d1_api$response$common & { @@ -19379,14 +19379,14 @@ export interface Response$cloudflare$d1$create$database$Status$4XX { }) & Schemas.d1_api$response$common$failure; } export interface Parameter$dex$endpoints$list$colos { - /** unique identifier linked to an account in the API request path. */ - account_id: Schemas.digital$experience$monitoring_account_identifier; /** Start time for connection period in RFC3339 (ISO 8601) format. */ timeStart: string; /** End time for connection period in RFC3339 (ISO 8601) format. */ timeEnd: string; /** Type of usage that colos should be sorted by. If unspecified, returns all Cloudflare colos sorted alphabetically. */ sortBy?: "fleet-status-usage" | "application-tests-usage"; + /** unique identifier linked to an account in the API request path. */ + account_id: Schemas.digital$experience$monitoring_account_identifier; } export interface Response$dex$endpoints$list$colos$Status$200 { "application/json": Schemas.digital$experience$monitoring_api$response$collection & { @@ -19397,7 +19397,6 @@ export interface Response$dex$endpoints$list$colos$Status$4XX { "application/json": Schemas.digital$experience$monitoring_api$response$common$failure; } export interface Parameter$dex$fleet$status$devices { - account_id: Schemas.digital$experience$monitoring_account_identifier; time_end: Schemas.digital$experience$monitoring_timestamp; time_start: Schemas.digital$experience$monitoring_timestamp; page: Schemas.digital$experience$monitoring_page; @@ -19409,6 +19408,7 @@ export interface Parameter$dex$fleet$status$devices { status?: Schemas.digital$experience$monitoring_status; platform?: Schemas.digital$experience$monitoring_platform; version?: Schemas.digital$experience$monitoring_version; + account_id: Schemas.digital$experience$monitoring_account_identifier; } export interface Response$dex$fleet$status$devices$Status$200 { "application/json": Schemas.digital$experience$monitoring_fleet_status_devices_response; @@ -19417,8 +19417,8 @@ export interface Response$dex$fleet$status$devices$Status$4xx { "application/json": Schemas.digital$experience$monitoring_api$response$single & Schemas.digital$experience$monitoring_api$response$common$failure; } export interface Parameter$dex$fleet$status$live { - account_id: Schemas.digital$experience$monitoring_account_identifier; since_minutes: Schemas.digital$experience$monitoring_since_minutes; + account_id: Schemas.digital$experience$monitoring_account_identifier; } export interface Response$dex$fleet$status$live$Status$200 { "application/json": Schemas.digital$experience$monitoring_fleet_status_live_response; @@ -19427,20 +19427,16 @@ export interface Response$dex$fleet$status$live$Status$4xx { "application/json": Schemas.digital$experience$monitoring_api$response$single & Schemas.digital$experience$monitoring_api$response$common$failure; } export interface Parameter$dex$fleet$status$over$time { - account_id: Schemas.digital$experience$monitoring_account_identifier; time_end: Schemas.digital$experience$monitoring_timestamp; time_start: Schemas.digital$experience$monitoring_timestamp; colo?: Schemas.digital$experience$monitoring_colo; device_id?: Schemas.digital$experience$monitoring_device_id; + account_id: Schemas.digital$experience$monitoring_account_identifier; } export interface Response$dex$fleet$status$over$time$Status$4xx { "application/json": Schemas.digital$experience$monitoring_api$response$single & Schemas.digital$experience$monitoring_api$response$common$failure; } export interface Parameter$dex$endpoints$http$test$details { - /** unique identifier linked to an account in the API request path. */ - account_id: Schemas.digital$experience$monitoring_account_identifier; - /** unique identifier for a specific test */ - test_id: Schemas.digital$experience$monitoring_uuid; /** Optionally filter result stats to a specific device(s). Cannot be used in combination with colo param. */ deviceId?: string[]; /** Start time for aggregate metrics in ISO ms */ @@ -19451,6 +19447,10 @@ export interface Parameter$dex$endpoints$http$test$details { interval: "minute" | "hour"; /** Optionally filter result stats to a Cloudflare colo. Cannot be used in combination with deviceId param. */ colo?: string; + /** unique identifier linked to an account in the API request path. */ + account_id: Schemas.digital$experience$monitoring_account_identifier; + /** unique identifier for a specific test */ + test_id: Schemas.digital$experience$monitoring_uuid; } export interface Response$dex$endpoints$http$test$details$Status$200 { "application/json": Schemas.digital$experience$monitoring_api$response$single & { @@ -19461,10 +19461,6 @@ export interface Response$dex$endpoints$http$test$details$Status$4XX { "application/json": Schemas.digital$experience$monitoring_api$response$common$failure; } export interface Parameter$dex$endpoints$http$test$percentiles { - /** unique identifier linked to an account in the API request path. */ - account_id: Schemas.digital$experience$monitoring_account_identifier; - /** unique identifier for a specific test */ - test_id: Schemas.digital$experience$monitoring_uuid; /** Optionally filter result stats to a specific device(s). Cannot be used in combination with colo param. */ deviceId?: string[]; /** Start time for aggregate metrics in ISO format */ @@ -19473,6 +19469,10 @@ export interface Parameter$dex$endpoints$http$test$percentiles { timeEnd: string; /** Optionally filter result stats to a Cloudflare colo. Cannot be used in combination with deviceId param. */ colo?: string; + /** unique identifier linked to an account in the API request path. */ + account_id: Schemas.digital$experience$monitoring_account_identifier; + /** unique identifier for a specific test */ + test_id: Schemas.digital$experience$monitoring_uuid; } export interface Response$dex$endpoints$http$test$percentiles$Status$200 { "application/json": Schemas.digital$experience$monitoring_api$response$single & { @@ -19483,8 +19483,6 @@ export interface Response$dex$endpoints$http$test$percentiles$Status$4XX { "application/json": Schemas.digital$experience$monitoring_api$response$common$failure; } export interface Parameter$dex$endpoints$list$tests { - /** unique identifier linked to an account in the API request path. */ - account_id: Schemas.digital$experience$monitoring_account_identifier; /** Optionally filter result stats to a Cloudflare colo. Cannot be used in combination with deviceId param. */ colo?: string; /** Optionally filter results by test name */ @@ -19495,6 +19493,8 @@ export interface Parameter$dex$endpoints$list$tests { page?: number; /** Number of items per page */ per_page?: number; + /** unique identifier linked to an account in the API request path. */ + account_id: Schemas.digital$experience$monitoring_account_identifier; } export interface Response$dex$endpoints$list$tests$Status$200 { "application/json": Schemas.digital$experience$monitoring_api$response$single & { @@ -19506,12 +19506,12 @@ export interface Response$dex$endpoints$list$tests$Status$4XX { "application/json": Schemas.digital$experience$monitoring_api$response$common$failure; } export interface Parameter$dex$endpoints$tests$unique$devices { - /** unique identifier linked to an account in the API request path. */ - account_id: Schemas.digital$experience$monitoring_account_identifier; /** Optionally filter results by test name */ testName?: string; /** Optionally filter result stats to a specific device(s). Cannot be used in combination with colo param. */ deviceId?: string[]; + /** unique identifier linked to an account in the API request path. */ + account_id: Schemas.digital$experience$monitoring_account_identifier; } export interface Response$dex$endpoints$tests$unique$devices$Status$200 { "application/json": Schemas.digital$experience$monitoring_api$response$single & { @@ -19536,10 +19536,6 @@ export interface Response$dex$endpoints$traceroute$test$result$network$path$Stat "application/json": Schemas.digital$experience$monitoring_api$response$common$failure; } export interface Parameter$dex$endpoints$traceroute$test$details { - /** Unique identifier linked to an account */ - account_id: Schemas.digital$experience$monitoring_account_identifier; - /** Unique identifier for a specific test */ - test_id: Schemas.digital$experience$monitoring_uuid; /** Optionally filter result stats to a specific device(s). Cannot be used in combination with colo param. */ deviceId?: string[]; /** Start time for aggregate metrics in ISO ms */ @@ -19550,6 +19546,10 @@ export interface Parameter$dex$endpoints$traceroute$test$details { interval: "minute" | "hour"; /** Optionally filter result stats to a Cloudflare colo. Cannot be used in combination with deviceId param. */ colo?: string; + /** Unique identifier linked to an account */ + account_id: Schemas.digital$experience$monitoring_account_identifier; + /** Unique identifier for a specific test */ + test_id: Schemas.digital$experience$monitoring_uuid; } export interface Response$dex$endpoints$traceroute$test$details$Status$200 { "application/json": Schemas.digital$experience$monitoring_api$response$single & { @@ -19560,10 +19560,6 @@ export interface Response$dex$endpoints$traceroute$test$details$Status$4XX { "application/json": Schemas.digital$experience$monitoring_api$response$common$failure; } export interface Parameter$dex$endpoints$traceroute$test$network$path { - /** unique identifier linked to an account */ - account_id: Schemas.digital$experience$monitoring_account_identifier; - /** unique identifier for a specific test */ - test_id: Schemas.digital$experience$monitoring_uuid; /** Device to filter tracroute result runs to */ deviceId: string; /** Start time for aggregate metrics in ISO ms */ @@ -19572,6 +19568,10 @@ export interface Parameter$dex$endpoints$traceroute$test$network$path { timeEnd: string; /** Time interval for aggregate time slots. */ interval: "minute" | "hour"; + /** unique identifier linked to an account */ + account_id: Schemas.digital$experience$monitoring_account_identifier; + /** unique identifier for a specific test */ + test_id: Schemas.digital$experience$monitoring_uuid; } export interface Response$dex$endpoints$traceroute$test$network$path$Status$200 { "application/json": Schemas.digital$experience$monitoring_api$response$single & { @@ -19582,10 +19582,6 @@ export interface Response$dex$endpoints$traceroute$test$network$path$Status$4XX "application/json": Schemas.digital$experience$monitoring_api$response$common$failure; } export interface Parameter$dex$endpoints$traceroute$test$percentiles { - /** unique identifier linked to an account in the API request path. */ - account_id: Schemas.digital$experience$monitoring_account_identifier; - /** unique identifier for a specific test */ - test_id: Schemas.digital$experience$monitoring_uuid; /** Optionally filter result stats to a specific device(s). Cannot be used in combination with colo param. */ deviceId?: string[]; /** Start time for aggregate metrics in ISO format */ @@ -19594,6 +19590,10 @@ export interface Parameter$dex$endpoints$traceroute$test$percentiles { timeEnd: string; /** Optionally filter result stats to a Cloudflare colo. Cannot be used in combination with deviceId param. */ colo?: string; + /** unique identifier linked to an account in the API request path. */ + account_id: Schemas.digital$experience$monitoring_account_identifier; + /** unique identifier for a specific test */ + test_id: Schemas.digital$experience$monitoring_uuid; } export interface Response$dex$endpoints$traceroute$test$percentiles$Status$200 { "application/json": Schemas.digital$experience$monitoring_api$response$single & { @@ -19799,9 +19799,9 @@ export interface Response$dlp$profiles$update$predefined$profile$Status$4XX { "application/json": Schemas.dlp_predefined_profile & Schemas.dlp_api$response$common$failure; } export interface Parameter$dns$firewall$list$dns$firewall$clusters { - account_id: Schemas.dns$firewall_identifier; page?: number; per_page?: number; + account_id: Schemas.dns$firewall_identifier; } export interface Response$dns$firewall$list$dns$firewall$clusters$Status$200 { "application/json": Schemas.dns$firewall_dns_firewall_response_collection; @@ -20357,9 +20357,9 @@ export interface Response$delete$hyperdrive$Status$4XX { }) & Schemas.hyperdrive_api$response$common$failure; } export interface Parameter$cloudflare$images$list$images { - account_id: Schemas.images_account_identifier; page?: number; per_page?: number; + account_id: Schemas.images_account_identifier; } export interface Response$cloudflare$images$list$images$Status$200 { "application/json": Schemas.images_images_list_response; @@ -20495,10 +20495,10 @@ export interface Response$cloudflare$images$variants$update$a$variant$Status$4XX "application/json": Schemas.images_image_variant_simple_response & Schemas.images_api$response$common$failure; } export interface Parameter$cloudflare$images$list$images$v2 { - account_id: Schemas.images_account_identifier; continuation_token?: string | null; per_page?: number; sort_order?: "asc" | "desc"; + account_id: Schemas.images_account_identifier; } export interface Response$cloudflare$images$list$images$v2$Status$200 { "application/json": Schemas.images_images_list_response_v2; @@ -20553,11 +20553,11 @@ export interface Response$asn$intelligence$get$asn$subnets$Status$4XX { } & Schemas.intel_api$response$common$failure; } export interface Parameter$passive$dns$by$ip$get$passive$dns$by$ip { - account_id: Schemas.intel_identifier; start_end_params?: Schemas.intel_start_end_params; ipv4?: string; page?: number; per_page?: number; + account_id: Schemas.intel_identifier; } export interface Response$passive$dns$by$ip$get$passive$dns$by$ip$Status$200 { "application/json": Schemas.intel_components$schemas$single_response; @@ -20566,8 +20566,8 @@ export interface Response$passive$dns$by$ip$get$passive$dns$by$ip$Status$4XX { "application/json": Schemas.intel_components$schemas$single_response & Schemas.intel_api$response$common$failure; } export interface Parameter$domain$intelligence$get$domain$details { - account_id: Schemas.intel_identifier; domain?: string; + account_id: Schemas.intel_identifier; } export interface Response$domain$intelligence$get$domain$details$Status$200 { "application/json": Schemas.intel_single_response; @@ -20576,8 +20576,8 @@ export interface Response$domain$intelligence$get$domain$details$Status$4XX { "application/json": Schemas.intel_single_response & Schemas.intel_api$response$common$failure; } export interface Parameter$domain$history$get$domain$history { - account_id: Schemas.intel_identifier; domain?: any; + account_id: Schemas.intel_identifier; } export interface Response$domain$history$get$domain$history$Status$200 { "application/json": Schemas.intel_response; @@ -20586,8 +20586,8 @@ export interface Response$domain$history$get$domain$history$Status$4XX { "application/json": Schemas.intel_response & Schemas.intel_api$response$common$failure; } export interface Parameter$domain$intelligence$get$multiple$domain$details { - account_id: Schemas.intel_identifier; domain?: any; + account_id: Schemas.intel_identifier; } export interface Response$domain$intelligence$get$multiple$domain$details$Status$200 { "application/json": Schemas.intel_collection_response; @@ -20596,9 +20596,9 @@ export interface Response$domain$intelligence$get$multiple$domain$details$Status "application/json": Schemas.intel_collection_response & Schemas.intel_api$response$common$failure; } export interface Parameter$ip$intelligence$get$ip$overview { - account_id: Schemas.intel_identifier; ipv4?: string; ipv6?: string; + account_id: Schemas.intel_identifier; } export interface Response$ip$intelligence$get$ip$overview$Status$200 { "application/json": Schemas.intel_schemas$response; @@ -20628,8 +20628,8 @@ export interface Response$miscategorization$create$miscategorization$Status$4XX "application/json": Schemas.intel_api$response$single & Schemas.intel_api$response$common$failure; } export interface Parameter$whois$record$get$whois$record { - account_id: Schemas.intel_identifier; domain?: string; + account_id: Schemas.intel_identifier; } export interface Response$whois$record$get$whois$record$Status$200 { "application/json": Schemas.intel_schemas$single_response; @@ -21024,13 +21024,13 @@ export interface Response$pages$purge$build$cache$Status$4XX { "application/json": Schemas.pages_api$response$common$failure; } export interface Parameter$r2$list$buckets { - account_id: Schemas.r2_account_identifier; name_contains?: string; start_after?: string; per_page?: number; order?: "name"; direction?: "asc" | "desc"; cursor?: string; + account_id: Schemas.r2_account_identifier; } export interface Response$r2$list$buckets$Status$200 { "application/json": Schemas.r2_v4_response_list & { @@ -21213,11 +21213,11 @@ export interface Response$lists$delete$a$list$Status$4XX { "application/json": Schemas.lists_list$delete$response$collection & Schemas.lists_api$response$common$failure; } export interface Parameter$lists$get$list$items { - list_id: Schemas.lists_list_id; - account_id: Schemas.lists_identifier; cursor?: string; per_page?: number; search?: string; + list_id: Schemas.lists_list_id; + account_id: Schemas.lists_identifier; } export interface Response$lists$get$list$items$Status$200 { "application/json": Schemas.lists_items$list$response$collection; @@ -21471,7 +21471,6 @@ export interface Response$getAccountEntrypointRulesetVersion$Status$4XX { "application/json": Schemas.rulesets_FailureResponse; } export interface Parameter$stream$videos$list$videos { - account_id: Schemas.stream_account_identifier; status?: Schemas.stream_media_state; creator?: Schemas.stream_creator; type?: Schemas.stream_type; @@ -21480,6 +21479,7 @@ export interface Parameter$stream$videos$list$videos { start?: Schemas.stream_start; end?: Schemas.stream_end; include_counts?: Schemas.stream_include_counts; + account_id: Schemas.stream_account_identifier; } export interface Response$stream$videos$list$videos$Status$200 { "application/json": Schemas.stream_video_response_collection; @@ -21680,9 +21680,9 @@ export interface Response$stream$video$clipping$clip$videos$given$a$start$and$en "application/json": Schemas.stream_api$response$common$failure; } export interface Parameter$stream$videos$upload$videos$from$a$url { - account_id: Schemas.stream_account_identifier; "Upload-Creator"?: Schemas.stream_creator; "Upload-Metadata"?: Schemas.stream_upload_metadata; + account_id: Schemas.stream_account_identifier; } export interface RequestBody$stream$videos$upload$videos$from$a$url { "application/json": Schemas.stream_video_copy_request; @@ -21694,8 +21694,8 @@ export interface Response$stream$videos$upload$videos$from$a$url$Status$4XX { "application/json": Schemas.stream_api$response$common$failure; } export interface Parameter$stream$videos$upload$videos$via$direct$upload$ur$ls { - account_id: Schemas.stream_account_identifier; "Upload-Creator"?: Schemas.stream_creator; + account_id: Schemas.stream_account_identifier; } export interface RequestBody$stream$videos$upload$videos$via$direct$upload$ur$ls { "application/json": Schemas.stream_direct_upload_request; @@ -21735,8 +21735,8 @@ export interface Response$stream$signing$keys$delete$signing$keys$Status$4XX { "application/json": Schemas.stream_api$response$common$failure; } export interface Parameter$stream$live$inputs$list$live$inputs { - account_id: Schemas.stream_schemas$identifier; include_counts?: Schemas.stream_include_counts; + account_id: Schemas.stream_schemas$identifier; } export interface Response$stream$live$inputs$list$live$inputs$Status$200 { "application/json": Schemas.stream_live_input_response_collection; @@ -21834,8 +21834,8 @@ export interface Response$stream$live$inputs$delete$an$output$Status$200 { export interface Response$stream$live$inputs$delete$an$output$Status$4XX { } export interface Parameter$stream$videos$storage$usage { - account_id: Schemas.stream_account_identifier; creator?: Schemas.stream_creator; + account_id: Schemas.stream_account_identifier; } export interface Response$stream$videos$storage$usage$Status$200 { "application/json": Schemas.stream_storage_use_response; @@ -21917,7 +21917,6 @@ export interface Response$stream$webhook$delete$webhooks$Status$4XX { "application/json": Schemas.stream_api$response$common$failure; } export interface Parameter$tunnel$route$list$tunnel$routes { - account_id: Schemas.tunnel_cf_account_id; comment?: Schemas.tunnel_comment; is_deleted?: any; network_subset?: any; @@ -21929,6 +21928,7 @@ export interface Parameter$tunnel$route$list$tunnel$routes { virtual_network_id?: any; per_page?: Schemas.tunnel_per_page; page?: number; + account_id: Schemas.tunnel_cf_account_id; } export interface Response$tunnel$route$list$tunnel$routes$Status$200 { "application/json": Schemas.tunnel_teamnet_response_collection; @@ -21983,9 +21983,9 @@ export interface Response$tunnel$route$update$a$tunnel$route$Status$4XX { "application/json": Schemas.tunnel_route_response_single & Schemas.tunnel_api$response$common$failure; } export interface Parameter$tunnel$route$get$tunnel$route$by$ip { + virtual_network_id?: Schemas.tunnel_route_virtual_network_id; ip: Schemas.tunnel_ip; account_id: Schemas.tunnel_cf_account_id; - virtual_network_id?: Schemas.tunnel_route_virtual_network_id; } export interface Response$tunnel$route$get$tunnel$route$by$ip$Status$200 { "application/json": Schemas.tunnel_teamnet_response_single; @@ -22011,11 +22011,11 @@ export interface Response$tunnel$route$create$a$tunnel$route$with$cidr$Status$4X "application/json": Schemas.tunnel_route_response_single & Schemas.tunnel_api$response$common$failure; } export interface Parameter$tunnel$route$delete$a$tunnel$route$with$cidr { - ip_network_encoded: Schemas.tunnel_ip_network_encoded; - account_id: Schemas.tunnel_cf_account_id; virtual_network_id?: Schemas.tunnel_vnet_id; tun_type?: Schemas.tunnel_tunnel_type; tunnel_id?: Schemas.tunnel_tunnel_id; + ip_network_encoded: Schemas.tunnel_ip_network_encoded; + account_id: Schemas.tunnel_cf_account_id; } export interface Response$tunnel$route$delete$a$tunnel$route$with$cidr$Status$200 { "application/json": Schemas.tunnel_route_response_single; @@ -22034,12 +22034,12 @@ export interface Response$tunnel$route$update$a$tunnel$route$with$cidr$Status$4X "application/json": Schemas.tunnel_route_response_single & Schemas.tunnel_api$response$common$failure; } export interface Parameter$tunnel$virtual$network$list$virtual$networks { - account_id: Schemas.tunnel_cf_account_id; name?: Schemas.tunnel_vnet_name; is_default?: any; is_deleted?: any; vnet_name?: Schemas.tunnel_vnet_name; vnet_id?: string; + account_id: Schemas.tunnel_cf_account_id; } export interface Response$tunnel$virtual$network$list$virtual$networks$Status$200 { "application/json": Schemas.tunnel_vnet_response_collection; @@ -22091,7 +22091,6 @@ export interface Response$tunnel$virtual$network$update$a$virtual$network$Status "application/json": Schemas.tunnel_vnet_response_single & Schemas.tunnel_api$response$common$failure; } export interface Parameter$cloudflare$tunnel$list$all$tunnels { - account_id: Schemas.tunnel_cf_account_id; name?: string; is_deleted?: boolean; existed_at?: Schemas.tunnel_existed_at; @@ -22103,6 +22102,7 @@ export interface Parameter$cloudflare$tunnel$list$all$tunnels { tun_types?: Schemas.tunnel_tunnel_types; per_page?: Schemas.tunnel_per_page; page?: number; + account_id: Schemas.tunnel_cf_account_id; } export interface Response$cloudflare$tunnel$list$all$tunnels$Status$200 { "application/json": Schemas.tunnel_tunnel$response$collection; @@ -22163,7 +22163,6 @@ export interface Response$argo$tunnel$clean$up$argo$tunnel$connections$Status$4X "application/json": Schemas.tunnel_empty_response & Schemas.tunnel_api$response$common$failure; } export interface Parameter$cloudflare$tunnel$list$warp$connector$tunnels { - account_id: Schemas.tunnel_cf_account_id; name?: string; is_deleted?: boolean; existed_at?: Schemas.tunnel_existed_at; @@ -22174,6 +22173,7 @@ export interface Parameter$cloudflare$tunnel$list$warp$connector$tunnels { exclude_prefix?: string; per_page?: Schemas.tunnel_per_page; page?: number; + account_id: Schemas.tunnel_cf_account_id; } export interface Response$cloudflare$tunnel$list$warp$connector$tunnels$Status$200 { "application/json": Schemas.tunnel_tunnel$response$collection; @@ -22306,11 +22306,11 @@ export type RequestBody$namespace$worker$script$upload$worker$module = RequestBo export type Response$namespace$worker$script$upload$worker$module$Status$200 = Responses.workers_200.Content; export type Response$namespace$worker$script$upload$worker$module$Status$4XX = Responses.workers_4XX.Content; export interface Parameter$namespace$worker$script$delete$worker { + /** If set to true, delete will not be stopped by associated service binding, durable object, or other binding. Any of these associated bindings/durable objects will be deleted along with the script. */ + force?: boolean; account_id: Schemas.workers_identifier; dispatch_namespace: Schemas.workers_dispatch_namespace_name; script_name: Schemas.workers_script_name; - /** If set to true, delete will not be stopped by associated service binding, durable object, or other binding. Any of these associated bindings/durable objects will be deleted along with the script. */ - force?: boolean; } export interface Response$namespace$worker$script$delete$worker$Status$200 { } @@ -22328,13 +22328,13 @@ export interface Response$namespace$worker$get$script$content$Status$4XX { "application/json": Schemas.workers_api$response$common; } export interface Parameter$namespace$worker$put$script$content { - account_id: Schemas.workers_identifier; - dispatch_namespace: Schemas.workers_dispatch_namespace_name; - script_name: Schemas.workers_script_name; /** The multipart name of a script upload part containing script content in service worker format. Alternative to including in a metadata part. */ "CF-WORKER-BODY-PART"?: string; /** The multipart name of a script upload part containing script content in es module format. Alternative to including in a metadata part. */ "CF-WORKER-MAIN-MODULE-PART"?: string; + account_id: Schemas.workers_identifier; + dispatch_namespace: Schemas.workers_dispatch_namespace_name; + script_name: Schemas.workers_script_name; } export interface RequestBody$namespace$worker$put$script$content { "multipart/form-data": { @@ -22381,12 +22381,12 @@ export interface Response$namespace$worker$patch$script$settings$Status$4XX { "application/json": Schemas.workers_api$response$common; } export interface Parameter$worker$domain$list$domains { - account_id: Schemas.workers_account_identifier; zone_name?: Schemas.workers_zone_name; service?: Schemas.workers_schemas$service; zone_id?: Schemas.workers_zone_identifier; hostname?: string; environment?: string; + account_id: Schemas.workers_account_identifier; } export interface Response$worker$domain$list$domains$Status$200 { "application/json": Schemas.workers_domain$response$collection; @@ -22443,10 +22443,10 @@ export interface Response$durable$objects$namespace$list$namespaces$Status$4XX { }) & Schemas.workers_api$response$common$failure; } export interface Parameter$durable$objects$namespace$list$objects { - id: Schemas.workers_schemas$id; - account_id: Schemas.workers_identifier; limit?: number; cursor?: string; + id: Schemas.workers_schemas$id; + account_id: Schemas.workers_identifier; } export interface Response$durable$objects$namespace$list$objects$Status$200 { "application/json": Schemas.workers_api$response$collection & { @@ -22674,10 +22674,10 @@ export interface Response$worker$script$download$worker$Status$4XX { undefined: any; } export interface Parameter$worker$script$upload$worker$module { - script_name: Schemas.workers_script_name; - account_id: Schemas.workers_identifier; /** Rollback to provided deployment based on deployment ID. Request body will only parse a "message" part. You can learn more about deployments [here](https://developers.cloudflare.com/workers/platform/deployments/). */ rollback_to?: Schemas.workers_uuid; + script_name: Schemas.workers_script_name; + account_id: Schemas.workers_identifier; } export type RequestBody$worker$script$upload$worker$module = RequestBodies.workers_script_upload.Content; export interface Response$worker$script$upload$worker$module$Status$200 { @@ -22687,22 +22687,22 @@ export interface Response$worker$script$upload$worker$module$Status$4XX { "application/json": any & Schemas.workers_api$response$common$failure; } export interface Parameter$worker$script$delete$worker { - script_name: Schemas.workers_script_name; - account_id: Schemas.workers_identifier; /** If set to true, delete will not be stopped by associated service binding, durable object, or other binding. Any of these associated bindings/durable objects will be deleted along with the script. */ force?: boolean; + script_name: Schemas.workers_script_name; + account_id: Schemas.workers_identifier; } export interface Response$worker$script$delete$worker$Status$200 { } export interface Response$worker$script$delete$worker$Status$4XX { } export interface Parameter$worker$script$put$content { - account_id: Schemas.workers_identifier; - script_name: Schemas.workers_script_name; /** The multipart name of a script upload part containing script content in service worker format. Alternative to including in a metadata part. */ "CF-WORKER-BODY-PART"?: string; /** The multipart name of a script upload part containing script content in es module format. Alternative to including in a metadata part. */ "CF-WORKER-MAIN-MODULE-PART"?: string; + account_id: Schemas.workers_identifier; + script_name: Schemas.workers_script_name; } export interface RequestBody$worker$script$put$content { "multipart/form-data": { @@ -22847,13 +22847,13 @@ export interface Response$worker$environment$get$script$content$Status$4XX { "application/json": Schemas.workers_api$response$common$failure; } export interface Parameter$worker$environment$put$script$content { - account_id: Schemas.workers_identifier; - service_name: Schemas.workers_service; - environment_name: Schemas.workers_environment; /** The multipart name of a script upload part containing script content in service worker format. Alternative to including in a metadata part. */ "CF-WORKER-BODY-PART"?: string; /** The multipart name of a script upload part containing script content in es module format. Alternative to including in a metadata part. */ "CF-WORKER-MAIN-MODULE-PART"?: string; + account_id: Schemas.workers_identifier; + service_name: Schemas.workers_service; + environment_name: Schemas.workers_environment; } export interface RequestBody$worker$environment$put$script$content { "multipart/form-data": { @@ -23324,7 +23324,6 @@ export interface Response$workers$ai$post$run$model$Status$400 { }; } export interface Parameter$audit$logs$get$account$audit$logs { - account_identifier: Schemas.w2PBr26F_identifier; id?: string; export?: boolean; "action.type"?: string; @@ -23337,6 +23336,7 @@ export interface Parameter$audit$logs$get$account$audit$logs { per_page?: number; page?: number; hide_user_logs?: boolean; + account_identifier: Schemas.w2PBr26F_identifier; } export interface Response$audit$logs$get$account$audit$logs$Status$200 { "application/json": Schemas.w2PBr26F_audit_logs_response_collection; @@ -23354,11 +23354,11 @@ export interface Response$account$billing$profile$$$deprecated$$billing$profile$ "application/json": Schemas.bill$subs$api_billing_response_single & Schemas.bill$subs$api_api$response$common$failure; } export interface Parameter$accounts$turnstile$widgets$list { - account_identifier: Schemas.grwMffPV_identifier; page?: number; per_page?: number; order?: "id" | "sitekey" | "name" | "created_on" | "modified_on"; direction?: "asc" | "desc"; + account_identifier: Schemas.grwMffPV_identifier; } export interface Response$accounts$turnstile$widgets$list$Status$200 { "application/json": Schemas.grwMffPV_api$response$common & { @@ -23371,11 +23371,11 @@ export interface Response$accounts$turnstile$widgets$list$Status$4XX { "application/json": Schemas.grwMffPV_api$response$common$failure; } export interface Parameter$accounts$turnstile$widget$create { - account_identifier: Schemas.grwMffPV_identifier; page?: number; per_page?: number; order?: "id" | "sitekey" | "name" | "created_on" | "modified_on"; direction?: "asc" | "desc"; + account_identifier: Schemas.grwMffPV_identifier; } export interface RequestBody$accounts$turnstile$widget$create { "application/json": { @@ -23561,8 +23561,6 @@ export interface Response$diagnostics$traceroute$Status$4XX { "application/json": Schemas.aMMS9DAQ_traceroute_response_collection & Schemas.aMMS9DAQ_api$response$common$failure; } export interface Parameter$dns$firewall$analytics$table { - identifier: Schemas.erIwb89A_identifier; - account_identifier: Schemas.erIwb89A_identifier; metrics?: Schemas.erIwb89A_metrics; dimensions?: Schemas.erIwb89A_dimensions; since?: Schemas.erIwb89A_since; @@ -23570,6 +23568,8 @@ export interface Parameter$dns$firewall$analytics$table { limit?: Schemas.erIwb89A_limit; sort?: Schemas.erIwb89A_sort; filters?: Schemas.erIwb89A_filters; + identifier: Schemas.erIwb89A_identifier; + account_identifier: Schemas.erIwb89A_identifier; } export interface Response$dns$firewall$analytics$table$Status$200 { "application/json": Schemas.erIwb89A_api$response$single & { @@ -23582,8 +23582,6 @@ export interface Response$dns$firewall$analytics$table$Status$4XX { }) & Schemas.erIwb89A_api$response$common$failure; } export interface Parameter$dns$firewall$analytics$by$time { - identifier: Schemas.erIwb89A_identifier; - account_identifier: Schemas.erIwb89A_identifier; metrics?: Schemas.erIwb89A_metrics; dimensions?: Schemas.erIwb89A_dimensions; since?: Schemas.erIwb89A_since; @@ -23592,6 +23590,8 @@ export interface Parameter$dns$firewall$analytics$by$time { sort?: Schemas.erIwb89A_sort; filters?: Schemas.erIwb89A_filters; time_delta?: Schemas.erIwb89A_time_delta; + identifier: Schemas.erIwb89A_identifier; + account_identifier: Schemas.erIwb89A_identifier; } export interface Response$dns$firewall$analytics$by$time$Status$200 { "application/json": Schemas.erIwb89A_api$response$single & { @@ -23604,11 +23604,11 @@ export interface Response$dns$firewall$analytics$by$time$Status$4XX { }) & Schemas.erIwb89A_api$response$common$failure; } export interface Parameter$email$routing$destination$addresses$list$destination$addresses { - account_identifier: Schemas.email_identifier; page?: number; per_page?: number; direction?: "asc" | "desc"; verified?: true | false; + account_identifier: Schemas.email_identifier; } export interface Response$email$routing$destination$addresses$list$destination$addresses$Status$200 { "application/json": Schemas.email_destination_addresses_response_collection; @@ -23637,13 +23637,13 @@ export interface Response$email$routing$destination$addresses$delete$destination "application/json": Schemas.email_destination_address_response_single; } export interface Parameter$ip$access$rules$for$an$account$list$ip$access$rules { - account_identifier: Schemas.legacy$jhs_account_identifier; filters?: Schemas.legacy$jhs_schemas$filters; "egs-pagination.json"?: Schemas.legacy$jhs_egs$pagination; page?: number; per_page?: number; order?: "configuration.target" | "configuration.value" | "mode"; direction?: "asc" | "desc"; + account_identifier: Schemas.legacy$jhs_account_identifier; } export interface Response$ip$access$rules$for$an$account$list$ip$access$rules$Status$200 { "application/json": Schemas.legacy$jhs_response_collection; @@ -23895,8 +23895,8 @@ export interface Response$account$load$balancer$monitors$list$monitor$references "application/json": Schemas.load$balancing_references_response & Schemas.load$balancing_api$response$common$failure; } export interface Parameter$account$load$balancer$pools$list$pools { - account_identifier: Schemas.load$balancing_components$schemas$identifier; monitor?: any; + account_identifier: Schemas.load$balancing_components$schemas$identifier; } export interface Response$account$load$balancer$pools$list$pools$Status$200 { "application/json": Schemas.load$balancing_schemas$response_collection; @@ -24065,10 +24065,10 @@ export interface Response$account$load$balancer$monitors$preview$result$Status$4 "application/json": Schemas.load$balancing_preview_result_response & Schemas.load$balancing_api$response$common$failure; } export interface Parameter$load$balancer$regions$list$regions { - account_identifier: Schemas.load$balancing_components$schemas$identifier; subdivision_code?: Schemas.load$balancing_subdivision_code_a2; subdivision_code_a2?: Schemas.load$balancing_subdivision_code_a2; country_code_a2?: string; + account_identifier: Schemas.load$balancing_components$schemas$identifier; } export interface Response$load$balancer$regions$list$regions$Status$200 { "application/json": Schemas.load$balancing_region_components$schemas$response_collection; @@ -24087,10 +24087,10 @@ export interface Response$load$balancer$regions$get$region$Status$4XX { "application/json": Schemas.load$balancing_components$schemas$single_response & Schemas.load$balancing_api$response$common$failure; } export interface Parameter$account$load$balancer$search$search$resources { - account_identifier: Schemas.load$balancing_components$schemas$identifier; search_params?: Schemas.load$balancing_search_params; page?: any; per_page?: any; + account_identifier: Schemas.load$balancing_components$schemas$identifier; } export interface Response$account$load$balancer$search$search$resources$Status$200 { "application/json": Schemas.load$balancing_api$response$collection & Schemas.load$balancing_search_result; @@ -24378,12 +24378,12 @@ export interface Response$magic$static$routes$delete$route$Status$4XX { "application/json": Schemas.magic_route_deleted_response & Schemas.magic_api$response$common$failure; } export interface Parameter$account$members$list$members { - account_identifier: Schemas.mrUXABdt_account_identifier; order?: "user.first_name" | "user.last_name" | "user.email" | "status"; status?: "accepted" | "pending" | "rejected"; page?: number; per_page?: number; direction?: "asc" | "desc"; + account_identifier: Schemas.mrUXABdt_account_identifier; } export interface Response$account$members$list$members$Status$200 { "application/json": Schemas.mrUXABdt_collection_member_response; @@ -24839,10 +24839,10 @@ export interface Response$web$analytics$delete$site$Status$4XX { "application/json": Schemas.X3uh9Izk_api$response$common$failure; } export interface Parameter$web$analytics$list$sites { - account_identifier: Schemas.X3uh9Izk_identifier; per_page?: Schemas.X3uh9Izk_per_page; page?: Schemas.X3uh9Izk_page; order_by?: Schemas.X3uh9Izk_order_by; + account_identifier: Schemas.X3uh9Izk_identifier; } export interface Response$web$analytics$list$sites$Status$200 { "application/json": Schemas.X3uh9Izk_sites$response$collection; @@ -25079,13 +25079,13 @@ export interface Response$secondary$dns$$$tsig$$delete$tsig$Status$4XX { "application/json": Schemas.vusJxt3o_schemas$id_response & Schemas.vusJxt3o_api$response$common$failure; } export interface Parameter$workers$kv$request$analytics$query$request$analytics { - account_identifier: Schemas.workers$kv_identifier; query?: Schemas.workers$kv_query & { dimensions?: ("accountId" | "responseCode" | "requestType")[]; filters?: any; metrics?: ("requests" | "writeKiB" | "readKiB")[]; sort?: any; }; + account_identifier: Schemas.workers$kv_identifier; } export interface Response$workers$kv$request$analytics$query$request$analytics$Status$200 { "application/json": Schemas.workers$kv_api$response$single & { @@ -25098,13 +25098,13 @@ export interface Response$workers$kv$request$analytics$query$request$analytics$S }) & Schemas.workers$kv_api$response$common$failure; } export interface Parameter$workers$kv$stored$data$analytics$query$stored$data$analytics { - account_identifier: Schemas.workers$kv_identifier; query?: Schemas.workers$kv_query & { dimensions?: ("namespaceId")[]; filters?: any; metrics?: ("storedBytes" | "storedKeys")[]; sort?: any; }; + account_identifier: Schemas.workers$kv_identifier; } export interface Response$workers$kv$stored$data$analytics$query$stored$data$analytics$Status$200 { "application/json": Schemas.workers$kv_api$response$single & { @@ -25117,11 +25117,11 @@ export interface Response$workers$kv$stored$data$analytics$query$stored$data$ana }) & Schemas.workers$kv_api$response$common$failure; } export interface Parameter$workers$kv$namespace$list$namespaces { - account_identifier: Schemas.workers$kv_identifier; page?: number; per_page?: number; order?: "id" | "title"; direction?: "asc" | "desc"; + account_identifier: Schemas.workers$kv_identifier; } export interface Response$workers$kv$namespace$list$namespaces$Status$200 { "application/json": Schemas.workers$kv_api$response$collection & { @@ -25199,11 +25199,11 @@ export interface Response$workers$kv$namespace$delete$multiple$key$value$pairs$S "application/json": Schemas.workers$kv_api$response$single & Schemas.workers$kv_api$response$common$failure; } export interface Parameter$workers$kv$namespace$list$a$namespace$$s$keys { - namespace_identifier: Schemas.workers$kv_namespace_identifier; - account_identifier: Schemas.workers$kv_identifier; limit?: number; prefix?: string; cursor?: string; + namespace_identifier: Schemas.workers$kv_namespace_identifier; + account_identifier: Schemas.workers$kv_identifier; } export interface Response$workers$kv$namespace$list$a$namespace$$s$keys$Status$200 { "application/json": Schemas.workers$kv_api$response$common & { @@ -25515,7 +25515,6 @@ export interface Response$ip$address$management$address$maps$remove$an$account$m "application/json": Schemas.addressing_api$response$collection & Schemas.addressing_api$response$common$failure; } export interface Parameter$urlscanner$search$scans { - accountId: string; scanId?: string; limit?: number; next_cursor?: string; @@ -25528,6 +25527,7 @@ export interface Parameter$urlscanner$search$scans { page_hostname?: string; page_path?: string; account_scans?: boolean; + accountId: string; } export interface Response$urlscanner$search$scans$Status$200 { "application/json": { @@ -26133,9 +26133,9 @@ export interface Response$urlscanner$get$scan$har$Status$404 { }; } export interface Parameter$urlscanner$get$scan$screenshot { + resolution?: "desktop" | "mobile" | "tablet"; scanId: string; accountId: string; - resolution?: "desktop" | "mobile" | "tablet"; } export interface Response$urlscanner$get$scan$screenshot$Status$200 { /** PNG Image */ @@ -27739,7 +27739,6 @@ export interface Response$organizations$$$deprecated$$edit$organization$Status$4 "application/json": Schemas.mrUXABdt_single_organization_response & Schemas.mrUXABdt_api$response$common$failure; } export interface Parameter$audit$logs$get$organization$audit$logs { - organization_identifier: Schemas.w2PBr26F_identifier; id?: string; export?: boolean; "action.type"?: string; @@ -27752,6 +27751,7 @@ export interface Parameter$audit$logs$get$organization$audit$logs { per_page?: number; page?: number; hide_user_logs?: boolean; + organization_identifier: Schemas.w2PBr26F_identifier; } export interface Response$audit$logs$get$organization$audit$logs$Status$200 { "application/json": Schemas.w2PBr26F_audit_logs_response_collection; @@ -28580,7 +28580,6 @@ export interface Response$radar$get$dns$as112$top$locations$Status$404 { }; } export interface Parameter$radar$get$dns$as112$top$locations$by$dnssec { - dnssec: "SUPPORTED" | "NOT_SUPPORTED"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -28589,6 +28588,7 @@ export interface Parameter$radar$get$dns$as112$top$locations$by$dnssec { asn?: string[]; location?: string[]; format?: "JSON" | "CSV"; + dnssec: "SUPPORTED" | "NOT_SUPPORTED"; } export interface Response$radar$get$dns$as112$top$locations$by$dnssec$Status$200 { "application/json": { @@ -28629,7 +28629,6 @@ export interface Response$radar$get$dns$as112$top$locations$by$dnssec$Status$404 }; } export interface Parameter$radar$get$dns$as112$top$locations$by$edns { - edns: "SUPPORTED" | "NOT_SUPPORTED"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -28638,6 +28637,7 @@ export interface Parameter$radar$get$dns$as112$top$locations$by$edns { asn?: string[]; location?: string[]; format?: "JSON" | "CSV"; + edns: "SUPPORTED" | "NOT_SUPPORTED"; } export interface Response$radar$get$dns$as112$top$locations$by$edns$Status$200 { "application/json": { @@ -28678,7 +28678,6 @@ export interface Response$radar$get$dns$as112$top$locations$by$edns$Status$404 { }; } export interface Parameter$radar$get$dns$as112$top$locations$by$ip$version { - ip_version: "IPv4" | "IPv6"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -28687,6 +28686,7 @@ export interface Parameter$radar$get$dns$as112$top$locations$by$ip$version { asn?: string[]; location?: string[]; format?: "JSON" | "CSV"; + ip_version: "IPv4" | "IPv6"; } export interface Response$radar$get$dns$as112$top$locations$by$ip$version$Status$200 { "application/json": { @@ -31156,8 +31156,8 @@ export interface Response$radar$get$reports$datasets$Status$400 { }; } export interface Parameter$radar$get$reports$dataset$download { - alias: string; date?: string | null; + alias: string; } export interface Response$radar$get$reports$dataset$download$Status$200 { "text/csv": string; @@ -31981,7 +31981,6 @@ export interface Response$radar$get$email$security$top$ases$by$messages$Status$4 }; } export interface Parameter$radar$get$email$security$top$ases$by$arc { - arc: "PASS" | "NONE" | "FAIL"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -31993,6 +31992,7 @@ export interface Parameter$radar$get$email$security$top$ases$by$arc { dmarc?: ("PASS" | "NONE" | "FAIL")[]; spf?: ("PASS" | "NONE" | "FAIL")[]; format?: "JSON" | "CSV"; + arc: "PASS" | "NONE" | "FAIL"; } export interface Response$radar$get$email$security$top$ases$by$arc$Status$200 { "application/json": { @@ -32033,7 +32033,6 @@ export interface Response$radar$get$email$security$top$ases$by$arc$Status$404 { }; } export interface Parameter$radar$get$email$security$top$ases$by$dkim { - dkim: "PASS" | "NONE" | "FAIL"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -32045,6 +32044,7 @@ export interface Parameter$radar$get$email$security$top$ases$by$dkim { dmarc?: ("PASS" | "NONE" | "FAIL")[]; spf?: ("PASS" | "NONE" | "FAIL")[]; format?: "JSON" | "CSV"; + dkim: "PASS" | "NONE" | "FAIL"; } export interface Response$radar$get$email$security$top$ases$by$dkim$Status$200 { "application/json": { @@ -32085,7 +32085,6 @@ export interface Response$radar$get$email$security$top$ases$by$dkim$Status$404 { }; } export interface Parameter$radar$get$email$security$top$ases$by$dmarc { - dmarc: "PASS" | "NONE" | "FAIL"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -32097,6 +32096,7 @@ export interface Parameter$radar$get$email$security$top$ases$by$dmarc { dkim?: ("PASS" | "NONE" | "FAIL")[]; spf?: ("PASS" | "NONE" | "FAIL")[]; format?: "JSON" | "CSV"; + dmarc: "PASS" | "NONE" | "FAIL"; } export interface Response$radar$get$email$security$top$ases$by$dmarc$Status$200 { "application/json": { @@ -32137,7 +32137,6 @@ export interface Response$radar$get$email$security$top$ases$by$dmarc$Status$404 }; } export interface Parameter$radar$get$email$security$top$ases$by$malicious { - malicious: "MALICIOUS" | "NOT_MALICIOUS"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -32150,6 +32149,7 @@ export interface Parameter$radar$get$email$security$top$ases$by$malicious { dmarc?: ("PASS" | "NONE" | "FAIL")[]; spf?: ("PASS" | "NONE" | "FAIL")[]; format?: "JSON" | "CSV"; + malicious: "MALICIOUS" | "NOT_MALICIOUS"; } export interface Response$radar$get$email$security$top$ases$by$malicious$Status$200 { "application/json": { @@ -32190,7 +32190,6 @@ export interface Response$radar$get$email$security$top$ases$by$malicious$Status$ }; } export interface Parameter$radar$get$email$security$top$ases$by$spam { - spam: "SPAM" | "NOT_SPAM"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -32203,6 +32202,7 @@ export interface Parameter$radar$get$email$security$top$ases$by$spam { dmarc?: ("PASS" | "NONE" | "FAIL")[]; spf?: ("PASS" | "NONE" | "FAIL")[]; format?: "JSON" | "CSV"; + spam: "SPAM" | "NOT_SPAM"; } export interface Response$radar$get$email$security$top$ases$by$spam$Status$200 { "application/json": { @@ -32243,7 +32243,6 @@ export interface Response$radar$get$email$security$top$ases$by$spam$Status$404 { }; } export interface Parameter$radar$get$email$security$top$ases$by$spf { - spf: "PASS" | "NONE" | "FAIL"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -32255,6 +32254,7 @@ export interface Parameter$radar$get$email$security$top$ases$by$spf { dkim?: ("PASS" | "NONE" | "FAIL")[]; dmarc?: ("PASS" | "NONE" | "FAIL")[]; format?: "JSON" | "CSV"; + spf: "PASS" | "NONE" | "FAIL"; } export interface Response$radar$get$email$security$top$ases$by$spf$Status$200 { "application/json": { @@ -32347,7 +32347,6 @@ export interface Response$radar$get$email$security$top$locations$by$messages$Sta }; } export interface Parameter$radar$get$email$security$top$locations$by$arc { - arc: "PASS" | "NONE" | "FAIL"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -32359,6 +32358,7 @@ export interface Parameter$radar$get$email$security$top$locations$by$arc { dmarc?: ("PASS" | "NONE" | "FAIL")[]; spf?: ("PASS" | "NONE" | "FAIL")[]; format?: "JSON" | "CSV"; + arc: "PASS" | "NONE" | "FAIL"; } export interface Response$radar$get$email$security$top$locations$by$arc$Status$200 { "application/json": { @@ -32399,7 +32399,6 @@ export interface Response$radar$get$email$security$top$locations$by$arc$Status$4 }; } export interface Parameter$radar$get$email$security$top$locations$by$dkim { - dkim: "PASS" | "NONE" | "FAIL"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -32411,6 +32410,7 @@ export interface Parameter$radar$get$email$security$top$locations$by$dkim { dmarc?: ("PASS" | "NONE" | "FAIL")[]; spf?: ("PASS" | "NONE" | "FAIL")[]; format?: "JSON" | "CSV"; + dkim: "PASS" | "NONE" | "FAIL"; } export interface Response$radar$get$email$security$top$locations$by$dkim$Status$200 { "application/json": { @@ -32451,7 +32451,6 @@ export interface Response$radar$get$email$security$top$locations$by$dkim$Status$ }; } export interface Parameter$radar$get$email$security$top$locations$by$dmarc { - dmarc: "PASS" | "NONE" | "FAIL"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -32463,6 +32462,7 @@ export interface Parameter$radar$get$email$security$top$locations$by$dmarc { dkim?: ("PASS" | "NONE" | "FAIL")[]; spf?: ("PASS" | "NONE" | "FAIL")[]; format?: "JSON" | "CSV"; + dmarc: "PASS" | "NONE" | "FAIL"; } export interface Response$radar$get$email$security$top$locations$by$dmarc$Status$200 { "application/json": { @@ -32503,7 +32503,6 @@ export interface Response$radar$get$email$security$top$locations$by$dmarc$Status }; } export interface Parameter$radar$get$email$security$top$locations$by$malicious { - malicious: "MALICIOUS" | "NOT_MALICIOUS"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -32516,6 +32515,7 @@ export interface Parameter$radar$get$email$security$top$locations$by$malicious { dmarc?: ("PASS" | "NONE" | "FAIL")[]; spf?: ("PASS" | "NONE" | "FAIL")[]; format?: "JSON" | "CSV"; + malicious: "MALICIOUS" | "NOT_MALICIOUS"; } export interface Response$radar$get$email$security$top$locations$by$malicious$Status$200 { "application/json": { @@ -32556,7 +32556,6 @@ export interface Response$radar$get$email$security$top$locations$by$malicious$St }; } export interface Parameter$radar$get$email$security$top$locations$by$spam { - spam: "SPAM" | "NOT_SPAM"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -32569,6 +32568,7 @@ export interface Parameter$radar$get$email$security$top$locations$by$spam { dmarc?: ("PASS" | "NONE" | "FAIL")[]; spf?: ("PASS" | "NONE" | "FAIL")[]; format?: "JSON" | "CSV"; + spam: "SPAM" | "NOT_SPAM"; } export interface Response$radar$get$email$security$top$locations$by$spam$Status$200 { "application/json": { @@ -32609,7 +32609,6 @@ export interface Response$radar$get$email$security$top$locations$by$spam$Status$ }; } export interface Parameter$radar$get$email$security$top$locations$by$spf { - spf: "PASS" | "NONE" | "FAIL"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -32621,6 +32620,7 @@ export interface Parameter$radar$get$email$security$top$locations$by$spf { dkim?: ("PASS" | "NONE" | "FAIL")[]; dmarc?: ("PASS" | "NONE" | "FAIL")[]; format?: "JSON" | "CSV"; + spf: "PASS" | "NONE" | "FAIL"; } export interface Response$radar$get$email$security$top$locations$by$spf$Status$200 { "application/json": { @@ -32696,8 +32696,8 @@ export interface Response$radar$get$entities$asn$list$Status$400 { }; } export interface Parameter$radar$get$entities$asn$by$id { - asn: number; format?: "JSON" | "CSV"; + asn: number; } export interface Response$radar$get$entities$asn$by$id$Status$200 { "application/json": { @@ -32743,9 +32743,9 @@ export interface Response$radar$get$entities$asn$by$id$Status$404 { }; } export interface Parameter$radar$get$asns$rel { - asn: number; asn2?: number; format?: "JSON" | "CSV"; + asn: number; } export interface Response$radar$get$asns$rel$Status$200 { "application/json": { @@ -32878,8 +32878,8 @@ export interface Response$radar$get$entities$locations$Status$400 { }; } export interface Parameter$radar$get$entities$location$by$alpha2 { - location: string; format?: "JSON" | "CSV"; + location: string; } export interface Response$radar$get$entities$location$by$alpha2$Status$200 { "application/json": { @@ -33706,7 +33706,6 @@ export interface Response$radar$get$http$top$ases$by$http$requests$Status$404 { }; } export interface Parameter$radar$get$http$top$ases$by$bot$class { - bot_class: "LIKELY_AUTOMATED" | "LIKELY_HUMAN"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -33721,6 +33720,7 @@ export interface Parameter$radar$get$http$top$ases$by$bot$class { os?: ("WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV")[]; tlsVersion?: ("TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC")[]; format?: "JSON" | "CSV"; + bot_class: "LIKELY_AUTOMATED" | "LIKELY_HUMAN"; } export interface Response$radar$get$http$top$ases$by$bot$class$Status$200 { "application/json": { @@ -33761,7 +33761,6 @@ export interface Response$radar$get$http$top$ases$by$bot$class$Status$404 { }; } export interface Parameter$radar$get$http$top$ases$by$device$type { - device_type: "DESKTOP" | "MOBILE" | "OTHER"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -33776,6 +33775,7 @@ export interface Parameter$radar$get$http$top$ases$by$device$type { os?: ("WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV")[]; tlsVersion?: ("TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC")[]; format?: "JSON" | "CSV"; + device_type: "DESKTOP" | "MOBILE" | "OTHER"; } export interface Response$radar$get$http$top$ases$by$device$type$Status$200 { "application/json": { @@ -33816,7 +33816,6 @@ export interface Response$radar$get$http$top$ases$by$device$type$Status$404 { }; } export interface Parameter$radar$get$http$top$ases$by$http$protocol { - http_protocol: "HTTP" | "HTTPS"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -33831,6 +33830,7 @@ export interface Parameter$radar$get$http$top$ases$by$http$protocol { os?: ("WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV")[]; tlsVersion?: ("TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC")[]; format?: "JSON" | "CSV"; + http_protocol: "HTTP" | "HTTPS"; } export interface Response$radar$get$http$top$ases$by$http$protocol$Status$200 { "application/json": { @@ -33871,7 +33871,6 @@ export interface Response$radar$get$http$top$ases$by$http$protocol$Status$404 { }; } export interface Parameter$radar$get$http$top$ases$by$http$version { - http_version: "HTTPv1" | "HTTPv2" | "HTTPv3"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -33886,6 +33885,7 @@ export interface Parameter$radar$get$http$top$ases$by$http$version { os?: ("WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV")[]; tlsVersion?: ("TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC")[]; format?: "JSON" | "CSV"; + http_version: "HTTPv1" | "HTTPv2" | "HTTPv3"; } export interface Response$radar$get$http$top$ases$by$http$version$Status$200 { "application/json": { @@ -33926,7 +33926,6 @@ export interface Response$radar$get$http$top$ases$by$http$version$Status$404 { }; } export interface Parameter$radar$get$http$top$ases$by$ip$version { - ip_version: "IPv4" | "IPv6"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -33941,6 +33940,7 @@ export interface Parameter$radar$get$http$top$ases$by$ip$version { os?: ("WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV")[]; tlsVersion?: ("TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC")[]; format?: "JSON" | "CSV"; + ip_version: "IPv4" | "IPv6"; } export interface Response$radar$get$http$top$ases$by$ip$version$Status$200 { "application/json": { @@ -33981,7 +33981,6 @@ export interface Response$radar$get$http$top$ases$by$ip$version$Status$404 { }; } export interface Parameter$radar$get$http$top$ases$by$operating$system { - os: "WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -33996,6 +33995,7 @@ export interface Parameter$radar$get$http$top$ases$by$operating$system { ipVersion?: ("IPv4" | "IPv6")[]; tlsVersion?: ("TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC")[]; format?: "JSON" | "CSV"; + os: "WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV"; } export interface Response$radar$get$http$top$ases$by$operating$system$Status$200 { "application/json": { @@ -34036,7 +34036,6 @@ export interface Response$radar$get$http$top$ases$by$operating$system$Status$404 }; } export interface Parameter$radar$get$http$top$ases$by$tls$version { - tls_version: "TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -34051,6 +34050,7 @@ export interface Parameter$radar$get$http$top$ases$by$tls$version { ipVersion?: ("IPv4" | "IPv6")[]; os?: ("WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV")[]; format?: "JSON" | "CSV"; + tls_version: "TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC"; } export interface Response$radar$get$http$top$ases$by$tls$version$Status$200 { "application/json": { @@ -34254,7 +34254,6 @@ export interface Response$radar$get$http$top$locations$by$http$requests$Status$4 }; } export interface Parameter$radar$get$http$top$locations$by$bot$class { - bot_class: "LIKELY_AUTOMATED" | "LIKELY_HUMAN"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -34269,6 +34268,7 @@ export interface Parameter$radar$get$http$top$locations$by$bot$class { os?: ("WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV")[]; tlsVersion?: ("TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC")[]; format?: "JSON" | "CSV"; + bot_class: "LIKELY_AUTOMATED" | "LIKELY_HUMAN"; } export interface Response$radar$get$http$top$locations$by$bot$class$Status$200 { "application/json": { @@ -34309,7 +34309,6 @@ export interface Response$radar$get$http$top$locations$by$bot$class$Status$404 { }; } export interface Parameter$radar$get$http$top$locations$by$device$type { - device_type: "DESKTOP" | "MOBILE" | "OTHER"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -34324,6 +34323,7 @@ export interface Parameter$radar$get$http$top$locations$by$device$type { os?: ("WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV")[]; tlsVersion?: ("TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC")[]; format?: "JSON" | "CSV"; + device_type: "DESKTOP" | "MOBILE" | "OTHER"; } export interface Response$radar$get$http$top$locations$by$device$type$Status$200 { "application/json": { @@ -34364,7 +34364,6 @@ export interface Response$radar$get$http$top$locations$by$device$type$Status$404 }; } export interface Parameter$radar$get$http$top$locations$by$http$protocol { - http_protocol: "HTTP" | "HTTPS"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -34379,6 +34378,7 @@ export interface Parameter$radar$get$http$top$locations$by$http$protocol { os?: ("WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV")[]; tlsVersion?: ("TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC")[]; format?: "JSON" | "CSV"; + http_protocol: "HTTP" | "HTTPS"; } export interface Response$radar$get$http$top$locations$by$http$protocol$Status$200 { "application/json": { @@ -34419,7 +34419,6 @@ export interface Response$radar$get$http$top$locations$by$http$protocol$Status$4 }; } export interface Parameter$radar$get$http$top$locations$by$http$version { - http_version: "HTTPv1" | "HTTPv2" | "HTTPv3"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -34434,6 +34433,7 @@ export interface Parameter$radar$get$http$top$locations$by$http$version { os?: ("WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV")[]; tlsVersion?: ("TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC")[]; format?: "JSON" | "CSV"; + http_version: "HTTPv1" | "HTTPv2" | "HTTPv3"; } export interface Response$radar$get$http$top$locations$by$http$version$Status$200 { "application/json": { @@ -34474,7 +34474,6 @@ export interface Response$radar$get$http$top$locations$by$http$version$Status$40 }; } export interface Parameter$radar$get$http$top$locations$by$ip$version { - ip_version: "IPv4" | "IPv6"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -34489,6 +34488,7 @@ export interface Parameter$radar$get$http$top$locations$by$ip$version { os?: ("WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV")[]; tlsVersion?: ("TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC")[]; format?: "JSON" | "CSV"; + ip_version: "IPv4" | "IPv6"; } export interface Response$radar$get$http$top$locations$by$ip$version$Status$200 { "application/json": { @@ -34529,7 +34529,6 @@ export interface Response$radar$get$http$top$locations$by$ip$version$Status$404 }; } export interface Parameter$radar$get$http$top$locations$by$operating$system { - os: "WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -34544,6 +34543,7 @@ export interface Parameter$radar$get$http$top$locations$by$operating$system { ipVersion?: ("IPv4" | "IPv6")[]; tlsVersion?: ("TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC")[]; format?: "JSON" | "CSV"; + os: "WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV"; } export interface Response$radar$get$http$top$locations$by$operating$system$Status$200 { "application/json": { @@ -34584,7 +34584,6 @@ export interface Response$radar$get$http$top$locations$by$operating$system$Statu }; } export interface Parameter$radar$get$http$top$locations$by$tls$version { - tls_version: "TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -34599,6 +34598,7 @@ export interface Parameter$radar$get$http$top$locations$by$tls$version { ipVersion?: ("IPv4" | "IPv6")[]; os?: ("WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV")[]; format?: "JSON" | "CSV"; + tls_version: "TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC"; } export interface Response$radar$get$http$top$locations$by$tls$version$Status$200 { "application/json": { @@ -35040,12 +35040,12 @@ export interface Response$radar$get$quality$speed$top$locations$Status$404 { }; } export interface Parameter$radar$get$ranking$domain$details { - domain: string; limit?: number; rankingType?: "POPULAR" | "TRENDING_RISE" | "TRENDING_STEADY"; name?: string[]; date?: (string | null)[]; format?: "JSON" | "CSV"; + domain: string; } export interface Response$radar$get$ranking$domain$details$Status$200 { "application/json": { @@ -36459,7 +36459,6 @@ export interface Response$zone$level$access$service$tokens$delete$a$service$toke "application/json": Schemas.access_api$response$common$failure; } export interface Parameter$dns$analytics$table { - identifier: Schemas.erIwb89A_identifier; metrics?: Schemas.erIwb89A_metrics; dimensions?: Schemas.erIwb89A_dimensions; since?: Schemas.erIwb89A_since; @@ -36467,6 +36466,7 @@ export interface Parameter$dns$analytics$table { limit?: Schemas.erIwb89A_limit; sort?: Schemas.erIwb89A_sort; filters?: Schemas.erIwb89A_filters; + identifier: Schemas.erIwb89A_identifier; } export interface Response$dns$analytics$table$Status$200 { "application/json": Schemas.erIwb89A_api$response$single & { @@ -36479,7 +36479,6 @@ export interface Response$dns$analytics$table$Status$4XX { }) & Schemas.erIwb89A_api$response$common$failure; } export interface Parameter$dns$analytics$by$time { - identifier: Schemas.erIwb89A_identifier; metrics?: Schemas.erIwb89A_metrics; dimensions?: Schemas.erIwb89A_dimensions; since?: Schemas.erIwb89A_since; @@ -36488,6 +36487,7 @@ export interface Parameter$dns$analytics$by$time { sort?: Schemas.erIwb89A_sort; filters?: Schemas.erIwb89A_filters; time_delta?: Schemas.erIwb89A_time_delta; + identifier: Schemas.erIwb89A_identifier; } export interface Response$dns$analytics$by$time$Status$200 { "application/json": Schemas.erIwb89A_api$response$single & { @@ -36750,8 +36750,8 @@ export interface Response$put$zones$zone_id$activation_check$Status$4XX { "application/json": Schemas.tt1FM6Ha_api$response$common$failure; } export interface Parameter$argo$analytics$for$zone$argo$analytics$for$a$zone { - zone_id: Schemas.argo$analytics_identifier; bins?: string; + zone_id: Schemas.argo$analytics_identifier; } export interface Response$argo$analytics$for$zone$argo$analytics$for$a$zone$Status$200 { "application/json": Schemas.argo$analytics_response_single; @@ -37349,7 +37349,6 @@ export interface Response$account$level$custom$nameservers$usage$for$a$zone$set$ "application/json": Schemas.dns$custom$nameservers_schemas$empty_response & Schemas.dns$custom$nameservers_api$response$common$failure; } export interface Parameter$dns$records$for$a$zone$list$dns$records { - zone_id: Schemas.dns$records_identifier; name?: Schemas.dns$records_name; type?: Schemas.dns$records_type; content?: Schemas.dns$records_content; @@ -37375,6 +37374,7 @@ export interface Parameter$dns$records$for$a$zone$list$dns$records { per_page?: Schemas.dns$records_per_page; order?: Schemas.dns$records_order; direction?: Schemas.dns$records_direction; + zone_id: Schemas.dns$records_identifier; } export interface Response$dns$records$for$a$zone$list$dns$records$Status$200 { "application/json": Schemas.dns$records_dns_response_collection; @@ -37528,13 +37528,13 @@ export interface Response$dnssec$edit$dnssec$status$Status$4XX { "application/json": Schemas.dnssec_dnssec_response_single & Schemas.dnssec_api$response$common$failure; } export interface Parameter$ip$access$rules$for$a$zone$list$ip$access$rules { - zone_id: Schemas.legacy$jhs_common_components$schemas$identifier; filters?: Schemas.legacy$jhs_schemas$filters; "egs-pagination.json"?: Schemas.legacy$jhs_egs$pagination; page?: number; per_page?: number; order?: "configuration.target" | "configuration.value" | "mode"; direction?: "asc" | "desc"; + zone_id: Schemas.legacy$jhs_common_components$schemas$identifier; } export interface Response$ip$access$rules$for$a$zone$list$ip$access$rules$Status$200 { "application/json": Schemas.legacy$jhs_rule_collection_response; @@ -37591,8 +37591,6 @@ export interface Response$ip$access$rules$for$a$zone$update$an$ip$access$rule$St "application/json": Schemas.legacy$jhs_rule_single_response & Schemas.legacy$jhs_api$response$common$failure; } export interface Parameter$waf$rule$groups$list$waf$rule$groups { - package_id: Schemas.waf$managed$rules_identifier; - zone_id: Schemas.waf$managed$rules_schemas$identifier; mode?: Schemas.waf$managed$rules_mode; page?: number; per_page?: number; @@ -37601,6 +37599,8 @@ export interface Parameter$waf$rule$groups$list$waf$rule$groups { match?: "any" | "all"; name?: string; rules_count?: number; + package_id: Schemas.waf$managed$rules_identifier; + zone_id: Schemas.waf$managed$rules_schemas$identifier; } export interface Response$waf$rule$groups$list$waf$rule$groups$Status$200 { "application/json": Schemas.waf$managed$rules_rule_group_response_collection; @@ -37636,8 +37636,6 @@ export interface Response$waf$rule$groups$update$a$waf$rule$group$Status$4XX { "application/json": Schemas.waf$managed$rules_rule_group_response_single & Schemas.waf$managed$rules_api$response$common$failure; } export interface Parameter$waf$rules$list$waf$rules { - package_id: Schemas.waf$managed$rules_identifier; - zone_id: Schemas.waf$managed$rules_schemas$identifier; mode?: "DIS" | "CHL" | "BLK" | "SIM"; group_id?: Schemas.waf$managed$rules_components$schemas$identifier; page?: number; @@ -37647,6 +37645,8 @@ export interface Parameter$waf$rules$list$waf$rules { match?: "any" | "all"; description?: string; priority?: string; + package_id: Schemas.waf$managed$rules_identifier; + zone_id: Schemas.waf$managed$rules_schemas$identifier; } export interface Response$waf$rules$list$waf$rules$Status$200 { "application/json": Schemas.waf$managed$rules_rule_response_collection; @@ -37703,8 +37703,6 @@ export interface Response$zones$0$hold$get$Status$4XX { "application/json": Schemas.zones_schemas$api$response$common$failure; } export interface Parameter$zones$0$hold$post { - /** Zone ID */ - zone_id: Schemas.zones_schemas$identifier; /** * If provided, the zone hold will extend to block any subdomain of the given zone, as well * as SSL4SaaS Custom Hostnames. For example, a zone hold on a zone with the hostname @@ -37712,6 +37710,8 @@ export interface Parameter$zones$0$hold$post { * 'staging.example.com', 'api.staging.example.com', etc. */ include_subdomains?: boolean; + /** Zone ID */ + zone_id: Schemas.zones_schemas$identifier; } export interface Response$zones$0$hold$post$Status$200 { "application/json": Schemas.zones_api$response$single & { @@ -37726,8 +37726,6 @@ export interface Response$zones$0$hold$post$Status$4XX { "application/json": Schemas.zones_schemas$api$response$common$failure; } export interface Parameter$zones$0$hold$delete { - /** Zone ID */ - zone_id: Schemas.zones_schemas$identifier; /** * If \`hold_after\` is provided, the hold will be temporarily disabled, * then automatically re-enabled by the system at the time specified @@ -37735,6 +37733,8 @@ export interface Parameter$zones$0$hold$delete { * disabled indefinitely. */ hold_after?: string; + /** Zone ID */ + zone_id: Schemas.zones_schemas$identifier; } export interface Response$zones$0$hold$delete$Status$200 { "application/json": { @@ -37994,7 +37994,6 @@ export interface Response$page$shield$update$page$shield$settings$Status$4XX { }) & Schemas.page$shield_api$response$common$failure; } export interface Parameter$page$shield$list$page$shield$connections { - zone_id: Schemas.page$shield_identifier; exclude_urls?: string; urls?: string; hosts?: string; @@ -38007,6 +38006,7 @@ export interface Parameter$page$shield$list$page$shield$connections { status?: string; page_url?: string; export?: "csv"; + zone_id: Schemas.page$shield_identifier; } export interface Response$page$shield$list$page$shield$connections$Status$200 { "application/json": Schemas.page$shield_list$zone$connections$response; @@ -38088,7 +38088,6 @@ export interface Response$page$shield$delete$a$page$shield$policy$Status$4XX { "application/json": Schemas.page$shield_get$zone$policy$response & Schemas.page$shield_api$response$common$failure; } export interface Parameter$page$shield$list$page$shield$scripts { - zone_id: Schemas.page$shield_identifier; exclude_urls?: string; urls?: string; hosts?: string; @@ -38102,6 +38101,7 @@ export interface Parameter$page$shield$list$page$shield$scripts { status?: string; page_url?: string; export?: "csv"; + zone_id: Schemas.page$shield_identifier; } export interface Response$page$shield$list$page$shield$scripts$Status$200 { "application/json": Schemas.page$shield_list$zone$scripts$response; @@ -38120,11 +38120,11 @@ export interface Response$page$shield$get$a$page$shield$script$Status$4XX { "application/json": Schemas.page$shield_get$zone$script$response & Schemas.page$shield_api$response$common$failure; } export interface Parameter$page$rules$list$page$rules { - zone_id: Schemas.zones_schemas$identifier; order?: "status" | "priority"; direction?: "asc" | "desc"; match?: "any" | "all"; status?: "active" | "disabled"; + zone_id: Schemas.zones_schemas$identifier; } export interface Response$page$rules$list$page$rules$Status$200 { "application/json": Schemas.zones_pagerule_response_collection; @@ -39800,7 +39800,6 @@ export interface Response$get$zones$zone_identifier$zaraz$export$Status$4XX { "application/json": Schemas.zaraz_api$response$common$failure; } export interface Parameter$get$zones$zone_identifier$zaraz$history { - zone_id: Schemas.zaraz_identifier; /** Ordinal number to start listing the results with. Default value is 0. */ offset?: number; /** Maximum amount of results to list. Default value is 10. */ @@ -39809,6 +39808,7 @@ export interface Parameter$get$zones$zone_identifier$zaraz$history { sortField?: "id" | "user_id" | "description" | "created_at" | "updated_at"; /** Sorting order. Default is DESC. */ sortOrder?: "DESC" | "ASC"; + zone_id: Schemas.zaraz_identifier; } export interface Response$get$zones$zone_identifier$zaraz$history$Status$200 { "application/json": Schemas.zaraz_zaraz$history$response; @@ -39830,9 +39830,9 @@ export interface Response$put$zones$zone_identifier$zaraz$history$Status$4XX { "application/json": Schemas.zaraz_api$response$common$failure; } export interface Parameter$get$zones$zone_identifier$zaraz$config$history { - zone_id: Schemas.zaraz_identifier; /** Comma separated list of Zaraz configuration IDs */ ids: number[]; + zone_id: Schemas.zaraz_identifier; } export interface Response$get$zones$zone_identifier$zaraz$config$history$Status$200 { "application/json": Schemas.zaraz_zaraz$config$history$response; @@ -39895,11 +39895,11 @@ export interface Response$speed$list$pages$Status$4XX { "application/json": Schemas.observatory_api$response$common$failure; } export interface Parameter$speed$list$test$history { - zone_id: Schemas.observatory_identifier; - url: Schemas.observatory_url; page?: number; per_page?: number; region?: Schemas.observatory_region; + zone_id: Schemas.observatory_identifier; + url: Schemas.observatory_url; } export interface Response$speed$list$test$history$Status$200 { "application/json": Schemas.observatory_page$test$response$collection; @@ -39923,9 +39923,9 @@ export interface Response$speed$create$test$Status$4XX { "application/json": Schemas.observatory_api$response$common$failure; } export interface Parameter$speed$delete$tests { + region?: Schemas.observatory_region; zone_id: Schemas.observatory_identifier; url: Schemas.observatory_url; - region?: Schemas.observatory_region; } export interface Response$speed$delete$tests$Status$200 { "application/json": Schemas.observatory_count$response; @@ -39945,8 +39945,6 @@ export interface Response$speed$get$test$Status$4XX { "application/json": Schemas.observatory_api$response$common$failure; } export interface Parameter$speed$list$page$trend { - zone_id: Schemas.observatory_identifier; - url: Schemas.observatory_url; region: Schemas.observatory_region; deviceType: Schemas.observatory_device_type; start: Schemas.observatory_timestamp; @@ -39955,6 +39953,8 @@ export interface Parameter$speed$list$page$trend { tz: string; /** A comma-separated list of metrics to include in the results. */ metrics: string; + zone_id: Schemas.observatory_identifier; + url: Schemas.observatory_url; } export interface Response$speed$list$page$trend$Status$200 { "application/json": Schemas.observatory_trend$response; @@ -39963,9 +39963,9 @@ export interface Response$speed$list$page$trend$Status$4XX { "application/json": Schemas.observatory_api$response$common$failure; } export interface Parameter$speed$get$scheduled$test { + region?: Schemas.observatory_region; zone_id: Schemas.observatory_identifier; url: Schemas.observatory_url; - region?: Schemas.observatory_region; } export interface Response$speed$get$scheduled$test$Status$200 { "application/json": Schemas.observatory_schedule$response$single; @@ -39974,9 +39974,9 @@ export interface Response$speed$get$scheduled$test$Status$4XX { "application/json": Schemas.observatory_api$response$common$failure; } export interface Parameter$speed$create$scheduled$test { + region?: Schemas.observatory_region; zone_id: Schemas.observatory_identifier; url: Schemas.observatory_url; - region?: Schemas.observatory_region; } export interface Response$speed$create$scheduled$test$Status$200 { "application/json": Schemas.observatory_create$schedule$response; @@ -39985,9 +39985,9 @@ export interface Response$speed$create$scheduled$test$Status$4XX { "application/json": Schemas.observatory_api$response$common$failure; } export interface Parameter$speed$delete$test$schedule { + region?: Schemas.observatory_region; zone_id: Schemas.observatory_identifier; url: Schemas.observatory_url; - region?: Schemas.observatory_region; } export interface Response$speed$delete$test$schedule$Status$200 { "application/json": Schemas.observatory_count$response; @@ -40180,10 +40180,10 @@ export interface Response$total$tls$enable$or$disable$total$tls$Status$4XX { "application/json": Schemas.ApQU2qAj_total_tls_settings_response & Schemas.ApQU2qAj_api$response$common$failure; } export interface Parameter$zone$analytics$$$deprecated$$get$analytics$by$co$locations { - zone_identifier: Schemas.dFBpZBFx_identifier; until?: Schemas.dFBpZBFx_until; since?: string | number; continuous?: boolean; + zone_identifier: Schemas.dFBpZBFx_identifier; } export interface Response$zone$analytics$$$deprecated$$get$analytics$by$co$locations$Status$200 { "application/json": Schemas.dFBpZBFx_colo_response; @@ -40192,10 +40192,10 @@ export interface Response$zone$analytics$$$deprecated$$get$analytics$by$co$locat "application/json": Schemas.dFBpZBFx_colo_response & Schemas.dFBpZBFx_api$response$common$failure; } export interface Parameter$zone$analytics$$$deprecated$$get$dashboard { - zone_identifier: Schemas.dFBpZBFx_identifier; until?: Schemas.dFBpZBFx_until; since?: string | number; continuous?: boolean; + zone_identifier: Schemas.dFBpZBFx_identifier; } export interface Response$zone$analytics$$$deprecated$$get$dashboard$Status$200 { "application/json": Schemas.dFBpZBFx_dashboard_response; @@ -40240,8 +40240,8 @@ export interface Response$zone$rate$plan$list$available$rate$plans$Status$4XX { "application/json": Schemas.bill$subs$api_plan_response_collection & Schemas.bill$subs$api_api$response$common$failure; } export interface Parameter$client$certificate$for$a$zone$list$hostname$associations { - zone_identifier: Schemas.ApQU2qAj_identifier; mtls_certificate_id?: string; + zone_identifier: Schemas.ApQU2qAj_identifier; } export interface Response$client$certificate$for$a$zone$list$hostname$associations$Status$200 { "application/json": Schemas.ApQU2qAj_hostname_associations_response; @@ -40262,12 +40262,12 @@ export interface Response$client$certificate$for$a$zone$put$hostname$association "application/json": Schemas.ApQU2qAj_api$response$common$failure; } export interface Parameter$client$certificate$for$a$zone$list$client$certificates { - zone_identifier: Schemas.ApQU2qAj_identifier; status?: "all" | "active" | "pending_reactivation" | "pending_revocation" | "revoked"; page?: number; per_page?: number; limit?: number; offset?: number; + zone_identifier: Schemas.ApQU2qAj_identifier; } export interface Response$client$certificate$for$a$zone$list$client$certificates$Status$200 { "application/json": Schemas.ApQU2qAj_client_certificate_response_collection; @@ -40321,11 +40321,11 @@ export interface Response$client$certificate$for$a$zone$edit$client$certificate$ "application/json": Schemas.ApQU2qAj_api$response$common$failure; } export interface Parameter$custom$ssl$for$a$zone$list$ssl$configurations { - zone_identifier: Schemas.ApQU2qAj_identifier; page?: number; per_page?: number; match?: "any" | "all"; status?: "active" | "expired" | "deleted" | "pending" | "initializing"; + zone_identifier: Schemas.ApQU2qAj_identifier; } export interface Response$custom$ssl$for$a$zone$list$ssl$configurations$Status$200 { "application/json": Schemas.ApQU2qAj_certificate_response_collection; @@ -40410,7 +40410,6 @@ export interface Response$custom$ssl$for$a$zone$re$prioritize$ssl$certificates$S "application/json": Schemas.ApQU2qAj_certificate_response_collection & Schemas.ApQU2qAj_api$response$common$failure; } export interface Parameter$custom$hostname$for$a$zone$list$custom$hostnames { - zone_identifier: Schemas.ApQU2qAj_identifier; hostname?: string; id?: string; page?: number; @@ -40418,6 +40417,7 @@ export interface Parameter$custom$hostname$for$a$zone$list$custom$hostnames { order?: "ssl" | "ssl_status"; direction?: "asc" | "desc"; ssl?: string; + zone_identifier: Schemas.ApQU2qAj_identifier; } export interface Response$custom$hostname$for$a$zone$list$custom$hostnames$Status$200 { "application/json": Schemas.ApQU2qAj_custom_hostname_response_collection; @@ -40584,10 +40584,10 @@ export interface Response$email$routing$settings$enable$email$routing$Status$200 "application/json": Schemas.email_email_settings_response_single; } export interface Parameter$email$routing$routing$rules$list$routing$rules { - zone_identifier: Schemas.email_identifier; page?: number; per_page?: number; enabled?: true | false; + zone_identifier: Schemas.email_identifier; } export interface Response$email$routing$routing$rules$list$routing$rules$Status$200 { "application/json": Schemas.email_rules_response_collection; @@ -40641,7 +40641,6 @@ export interface Response$email$routing$routing$rules$update$catch$all$rule$Stat "application/json": Schemas.email_catch_all_rule_response_single; } export interface Parameter$filters$list$filters { - zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; paused?: Schemas.legacy$jhs_filters_components$schemas$paused; expression?: string; description?: string; @@ -40649,6 +40648,7 @@ export interface Parameter$filters$list$filters { page?: number; per_page?: number; id?: string; + zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; } export interface Response$filters$list$filters$Status$200 { "application/json": Schemas.legacy$jhs_schemas$filter$response$collection; @@ -40734,7 +40734,6 @@ export interface Response$filters$delete$a$filter$Status$4xx { "application/json": Schemas.legacy$jhs_filter$delete$response$single & Schemas.legacy$jhs_api$response$common$failure; } export interface Parameter$zone$lockdown$list$zone$lockdown$rules { - zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; page?: number; description?: Schemas.legacy$jhs_schemas$description_search; modified_on?: Schemas.legacy$jhs_components$schemas$modified_on; @@ -40746,6 +40745,7 @@ export interface Parameter$zone$lockdown$list$zone$lockdown$rules { created_on?: Date; description_search?: string; ip_search?: string; + zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; } export interface Response$zone$lockdown$list$zone$lockdown$rules$Status$200 { "application/json": Schemas.legacy$jhs_zonelockdown_response_collection; @@ -40813,13 +40813,13 @@ export interface Response$zone$lockdown$delete$a$zone$lockdown$rule$Status$4xx { } & Schemas.legacy$jhs_api$response$common$failure; } export interface Parameter$firewall$rules$list$firewall$rules { - zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; description?: string; action?: string; page?: number; per_page?: number; id?: string; paused?: boolean; + zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; } export interface Response$firewall$rules$list$firewall$rules$Status$200 { "application/json": Schemas.legacy$jhs_filter$rules$response$collection; @@ -40885,7 +40885,7 @@ export interface Response$firewall$rules$update$priority$of$firewall$rules$Statu "application/json": Schemas.legacy$jhs_filter$rules$response$collection & Schemas.legacy$jhs_api$response$common$failure; } export interface Parameter$firewall$rules$get$a$firewall$rule { - id?: Schemas.legacy$jhs_firewall$rules_components$schemas$id; + id: Schemas.legacy$jhs_firewall$rules_components$schemas$id; zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; } export interface Response$firewall$rules$get$a$firewall$rule$Status$200 { @@ -40942,12 +40942,12 @@ export interface Response$firewall$rules$update$priority$of$a$firewall$rule$Stat "application/json": Schemas.legacy$jhs_filter$rules$response$collection & Schemas.legacy$jhs_api$response$common$failure; } export interface Parameter$user$agent$blocking$rules$list$user$agent$blocking$rules { - zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; page?: number; description?: Schemas.legacy$jhs_description_search; description_search?: Schemas.legacy$jhs_description_search; per_page?: number; ua_search?: string; + zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; } export interface Response$user$agent$blocking$rules$list$user$agent$blocking$rules$Status$200 { "application/json": Schemas.legacy$jhs_firewalluablock_response_collection; @@ -41016,9 +41016,9 @@ export interface Response$user$agent$blocking$rules$delete$a$user$agent$blocking }) & Schemas.legacy$jhs_api$response$common$failure; } export interface Parameter$waf$overrides$list$waf$overrides { - zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; page?: number; per_page?: number; + zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; } export interface Response$waf$overrides$list$waf$overrides$Status$200 { "application/json": Schemas.legacy$jhs_override_response_collection; @@ -41087,13 +41087,13 @@ export interface Response$waf$overrides$delete$a$waf$override$Status$4xx { } & Schemas.legacy$jhs_api$response$common$failure; } export interface Parameter$waf$packages$list$waf$packages { - zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; page?: number; per_page?: number; order?: "name"; direction?: "asc" | "desc"; match?: "any" | "all"; name?: string; + zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; } export interface Response$waf$packages$list$waf$packages$Status$200 { "application/json": Schemas.legacy$jhs_package_response_collection; @@ -41358,10 +41358,10 @@ export interface Response$logs$received$update$log$retention$flag$Status$4XX { "application/json": Schemas.dFBpZBFx_flag_response & Schemas.dFBpZBFx_api$response$common$failure; } export interface Parameter$logs$received$get$logs$ray$i$ds { - ray_identifier: Schemas.dFBpZBFx_ray_identifier; - zone_identifier: Schemas.dFBpZBFx_identifier; timestamps?: Schemas.dFBpZBFx_timestamps; fields?: string; + ray_identifier: Schemas.dFBpZBFx_ray_identifier; + zone_identifier: Schemas.dFBpZBFx_identifier; } export interface Response$logs$received$get$logs$ray$i$ds$Status$200 { "application/json": Schemas.dFBpZBFx_logs; @@ -41370,13 +41370,13 @@ export interface Response$logs$received$get$logs$ray$i$ds$Status$4XX { "application/json": Schemas.dFBpZBFx_logs & Schemas.dFBpZBFx_api$response$common$failure; } export interface Parameter$logs$received$get$logs$received { - zone_identifier: Schemas.dFBpZBFx_identifier; end: Schemas.dFBpZBFx_end; sample?: Schemas.dFBpZBFx_sample; timestamps?: Schemas.dFBpZBFx_timestamps; count?: number; fields?: string; start?: string | number; + zone_identifier: Schemas.dFBpZBFx_identifier; } export interface Response$logs$received$get$logs$received$Status$200 { "application/json": Schemas.dFBpZBFx_logs; @@ -41529,9 +41529,9 @@ export interface Response$zone$level$authenticated$origin$pulls$set$enablement$f "application/json": Schemas.ApQU2qAj_enabled_response & Schemas.ApQU2qAj_api$response$common$failure; } export interface Parameter$rate$limits$for$a$zone$list$rate$limits { - zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; page?: number; per_page?: number; + zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; } export interface Response$rate$limits$for$a$zone$list$rate$limits$Status$200 { "application/json": Schemas.legacy$jhs_ratelimit_response_collection; @@ -41850,8 +41850,8 @@ export interface Response$zone$snippets$snippet$rules$put$Status$5XX { "application/json": Schemas.ajfne3Yc_api$response$common$failure; } export interface Parameter$certificate$packs$list$certificate$packs { - zone_identifier: Schemas.ApQU2qAj_identifier; status?: "all"; + zone_identifier: Schemas.ApQU2qAj_identifier; } export interface Response$certificate$packs$list$certificate$packs$Status$200 { "application/json": Schemas.ApQU2qAj_certificate_pack_response_collection; @@ -41960,8 +41960,8 @@ export interface Response$universal$ssl$settings$for$a$zone$edit$universal$ssl$s "application/json": Schemas.ApQU2qAj_ssl_universal_settings_response & Schemas.ApQU2qAj_api$response$common$failure; } export interface Parameter$ssl$verification$ssl$verification$details { - zone_identifier: Schemas.ApQU2qAj_identifier; retry?: string; + zone_identifier: Schemas.ApQU2qAj_identifier; } export interface Response$ssl$verification$ssl$verification$details$Status$200 { "application/json": Schemas.ApQU2qAj_ssl_verification_response_collection; @@ -42386,10 +42386,10 @@ export interface Response$web3$hostname$delete$ipfs$universal$path$gateway$conte "application/json": Schemas.YSGOQLq3_api$response$single$id & Schemas.YSGOQLq3_api$response$common$failure; } export interface Parameter$spectrum$aggregate$analytics$get$current$aggregated$analytics { - zone: Schemas.legacy$jhs_common_components$schemas$identifier; appID?: Schemas.legacy$jhs_app_id_param; app_id_param?: Schemas.legacy$jhs_app_id_param; colo_name?: string; + zone: Schemas.legacy$jhs_common_components$schemas$identifier; } export interface Response$spectrum$aggregate$analytics$get$current$aggregated$analytics$Status$200 { "application/json": Schemas.legacy$jhs_analytics$aggregate_components$schemas$response_collection; @@ -42398,7 +42398,6 @@ export interface Response$spectrum$aggregate$analytics$get$current$aggregated$an "application/json": Schemas.legacy$jhs_analytics$aggregate_components$schemas$response_collection & Schemas.legacy$jhs_api$response$common$failure; } export interface Parameter$spectrum$analytics$$$by$time$$get$analytics$by$time { - zone: Schemas.legacy$jhs_common_components$schemas$identifier; dimensions?: Schemas.legacy$jhs_dimensions; sort?: Schemas.legacy$jhs_sort; until?: Schemas.legacy$jhs_schemas$until; @@ -42406,6 +42405,7 @@ export interface Parameter$spectrum$analytics$$$by$time$$get$analytics$by$time { filters?: string; since?: Date; time_delta?: "year" | "quarter" | "month" | "week" | "day" | "hour" | "dekaminute" | "minute"; + zone: Schemas.legacy$jhs_common_components$schemas$identifier; } export interface Response$spectrum$analytics$$$by$time$$get$analytics$by$time$Status$200 { "application/json": Schemas.legacy$jhs_api$response$single; @@ -42414,13 +42414,13 @@ export interface Response$spectrum$analytics$$$by$time$$get$analytics$by$time$St "application/json": Schemas.legacy$jhs_api$response$single & Schemas.legacy$jhs_api$response$common$failure; } export interface Parameter$spectrum$analytics$$$summary$$get$analytics$summary { - zone: Schemas.legacy$jhs_common_components$schemas$identifier; dimensions?: Schemas.legacy$jhs_dimensions; sort?: Schemas.legacy$jhs_sort; until?: Schemas.legacy$jhs_schemas$until; metrics?: ("count" | "bytesIngress" | "bytesEgress" | "durationAvg" | "durationMedian" | "duration90th" | "duration99th")[]; filters?: string; since?: Date; + zone: Schemas.legacy$jhs_common_components$schemas$identifier; } export interface Response$spectrum$analytics$$$summary$$get$analytics$summary$Status$200 { "application/json": Schemas.legacy$jhs_api$response$single; @@ -42429,11 +42429,11 @@ export interface Response$spectrum$analytics$$$summary$$get$analytics$summary$St "application/json": Schemas.legacy$jhs_api$response$single & Schemas.legacy$jhs_api$response$common$failure; } export interface Parameter$spectrum$applications$list$spectrum$applications { - zone: Schemas.legacy$jhs_common_components$schemas$identifier; page?: number; per_page?: number; direction?: "asc" | "desc"; order?: "protocol" | "app_id" | "created_on" | "modified_on" | "dns"; + zone: Schemas.legacy$jhs_common_components$schemas$identifier; } export interface Response$spectrum$applications$list$spectrum$applications$Status$200 { "application/json": Schemas.legacy$jhs_components$schemas$response_collection; diff --git a/test/__tests__/functional/__snapshots__/coudflare-test.ts.snap b/test/__tests__/functional/__snapshots__/coudflare-test.ts.snap index 3be4f1d..a401ec2 100644 --- a/test/__tests__/functional/__snapshots__/coudflare-test.ts.snap +++ b/test/__tests__/functional/__snapshots__/coudflare-test.ts.snap @@ -19033,11 +19033,11 @@ export interface Response$notification$webhooks$delete$a$webhook$Status$4XX { "application/json": Schemas.w2PBr26F_api$response$collection & Schemas.w2PBr26F_api$response$common$failure; } export interface Parameter$notification$history$list$history { - account_id: Schemas.w2PBr26F_account$id; per_page?: Schemas.w2PBr26F_per_page; before?: Schemas.w2PBr26F_before; page?: number; since?: Date; + account_id: Schemas.w2PBr26F_account$id; } export interface Response$notification$history$list$history$Status$200 { "application/json": Schemas.w2PBr26F_history_components$schemas$response_collection; @@ -19126,9 +19126,9 @@ export interface Response$phishing$url$scanner$submit$suspicious$url$for$scannin "application/json": Schemas.intel_phishing$url$submit_components$schemas$single_response & Schemas.intel_api$response$common$failure; } export interface Parameter$phishing$url$information$get$results$for$a$url$scan { - account_id: Schemas.intel_identifier; url_id_param?: Schemas.intel_url_id_param; url?: string; + account_id: Schemas.intel_identifier; } export interface Response$phishing$url$information$get$results$for$a$url$scan$Status$200 { "application/json": Schemas.intel_phishing$url$info_components$schemas$single_response; @@ -19137,7 +19137,6 @@ export interface Response$phishing$url$information$get$results$for$a$url$scan$St "application/json": Schemas.intel_phishing$url$info_components$schemas$single_response & Schemas.intel_api$response$common$failure; } export interface Parameter$cloudflare$tunnel$list$cloudflare$tunnels { - account_id: Schemas.tunnel_cf_account_id; name?: string; is_deleted?: boolean; existed_at?: Schemas.tunnel_existed_at; @@ -19148,6 +19147,7 @@ export interface Parameter$cloudflare$tunnel$list$cloudflare$tunnels { exclude_prefix?: string; per_page?: Schemas.tunnel_per_page; page?: number; + account_id: Schemas.tunnel_cf_account_id; } export interface Response$cloudflare$tunnel$list$cloudflare$tunnels$Status$200 { "application/json": Schemas.tunnel_tunnel$response$collection; @@ -19246,9 +19246,9 @@ export interface Response$cloudflare$tunnel$list$cloudflare$tunnel$connections$S "application/json": Schemas.tunnel_tunnel_connections_response & Schemas.tunnel_api$response$common$failure; } export interface Parameter$cloudflare$tunnel$clean$up$cloudflare$tunnel$connections { + client_id?: string; account_id: Schemas.tunnel_cf_account_id; tunnel_id: Schemas.tunnel_tunnel_id; - client_id?: string; } export interface RequestBody$cloudflare$tunnel$clean$up$cloudflare$tunnel$connections { "application/json": {}; @@ -19345,10 +19345,10 @@ export interface Response$account$level$custom$nameservers$verify$account$custom "application/json": Schemas.dns$custom$nameservers_acns_response_collection & Schemas.dns$custom$nameservers_api$response$common$failure; } export interface Parameter$cloudflare$d1$list$databases { - account_id: Schemas.d1_account$identifier; name?: string; page?: number; per_page?: number; + account_id: Schemas.d1_account$identifier; } export interface Response$cloudflare$d1$list$databases$Status$200 { "application/json": Schemas.d1_api$response$common & { @@ -19379,14 +19379,14 @@ export interface Response$cloudflare$d1$create$database$Status$4XX { }) & Schemas.d1_api$response$common$failure; } export interface Parameter$dex$endpoints$list$colos { - /** unique identifier linked to an account in the API request path. */ - account_id: Schemas.digital$experience$monitoring_account_identifier; /** Start time for connection period in RFC3339 (ISO 8601) format. */ timeStart: string; /** End time for connection period in RFC3339 (ISO 8601) format. */ timeEnd: string; /** Type of usage that colos should be sorted by. If unspecified, returns all Cloudflare colos sorted alphabetically. */ sortBy?: "fleet-status-usage" | "application-tests-usage"; + /** unique identifier linked to an account in the API request path. */ + account_id: Schemas.digital$experience$monitoring_account_identifier; } export interface Response$dex$endpoints$list$colos$Status$200 { "application/json": Schemas.digital$experience$monitoring_api$response$collection & { @@ -19397,7 +19397,6 @@ export interface Response$dex$endpoints$list$colos$Status$4XX { "application/json": Schemas.digital$experience$monitoring_api$response$common$failure; } export interface Parameter$dex$fleet$status$devices { - account_id: Schemas.digital$experience$monitoring_account_identifier; time_end: Schemas.digital$experience$monitoring_timestamp; time_start: Schemas.digital$experience$monitoring_timestamp; page: Schemas.digital$experience$monitoring_page; @@ -19409,6 +19408,7 @@ export interface Parameter$dex$fleet$status$devices { status?: Schemas.digital$experience$monitoring_status; platform?: Schemas.digital$experience$monitoring_platform; version?: Schemas.digital$experience$monitoring_version; + account_id: Schemas.digital$experience$monitoring_account_identifier; } export interface Response$dex$fleet$status$devices$Status$200 { "application/json": Schemas.digital$experience$monitoring_fleet_status_devices_response; @@ -19417,8 +19417,8 @@ export interface Response$dex$fleet$status$devices$Status$4xx { "application/json": Schemas.digital$experience$monitoring_api$response$single & Schemas.digital$experience$monitoring_api$response$common$failure; } export interface Parameter$dex$fleet$status$live { - account_id: Schemas.digital$experience$monitoring_account_identifier; since_minutes: Schemas.digital$experience$monitoring_since_minutes; + account_id: Schemas.digital$experience$monitoring_account_identifier; } export interface Response$dex$fleet$status$live$Status$200 { "application/json": Schemas.digital$experience$monitoring_fleet_status_live_response; @@ -19427,20 +19427,16 @@ export interface Response$dex$fleet$status$live$Status$4xx { "application/json": Schemas.digital$experience$monitoring_api$response$single & Schemas.digital$experience$monitoring_api$response$common$failure; } export interface Parameter$dex$fleet$status$over$time { - account_id: Schemas.digital$experience$monitoring_account_identifier; time_end: Schemas.digital$experience$monitoring_timestamp; time_start: Schemas.digital$experience$monitoring_timestamp; colo?: Schemas.digital$experience$monitoring_colo; device_id?: Schemas.digital$experience$monitoring_device_id; + account_id: Schemas.digital$experience$monitoring_account_identifier; } export interface Response$dex$fleet$status$over$time$Status$4xx { "application/json": Schemas.digital$experience$monitoring_api$response$single & Schemas.digital$experience$monitoring_api$response$common$failure; } export interface Parameter$dex$endpoints$http$test$details { - /** unique identifier linked to an account in the API request path. */ - account_id: Schemas.digital$experience$monitoring_account_identifier; - /** unique identifier for a specific test */ - test_id: Schemas.digital$experience$monitoring_uuid; /** Optionally filter result stats to a specific device(s). Cannot be used in combination with colo param. */ deviceId?: string[]; /** Start time for aggregate metrics in ISO ms */ @@ -19451,6 +19447,10 @@ export interface Parameter$dex$endpoints$http$test$details { interval: "minute" | "hour"; /** Optionally filter result stats to a Cloudflare colo. Cannot be used in combination with deviceId param. */ colo?: string; + /** unique identifier linked to an account in the API request path. */ + account_id: Schemas.digital$experience$monitoring_account_identifier; + /** unique identifier for a specific test */ + test_id: Schemas.digital$experience$monitoring_uuid; } export interface Response$dex$endpoints$http$test$details$Status$200 { "application/json": Schemas.digital$experience$monitoring_api$response$single & { @@ -19461,10 +19461,6 @@ export interface Response$dex$endpoints$http$test$details$Status$4XX { "application/json": Schemas.digital$experience$monitoring_api$response$common$failure; } export interface Parameter$dex$endpoints$http$test$percentiles { - /** unique identifier linked to an account in the API request path. */ - account_id: Schemas.digital$experience$monitoring_account_identifier; - /** unique identifier for a specific test */ - test_id: Schemas.digital$experience$monitoring_uuid; /** Optionally filter result stats to a specific device(s). Cannot be used in combination with colo param. */ deviceId?: string[]; /** Start time for aggregate metrics in ISO format */ @@ -19473,6 +19469,10 @@ export interface Parameter$dex$endpoints$http$test$percentiles { timeEnd: string; /** Optionally filter result stats to a Cloudflare colo. Cannot be used in combination with deviceId param. */ colo?: string; + /** unique identifier linked to an account in the API request path. */ + account_id: Schemas.digital$experience$monitoring_account_identifier; + /** unique identifier for a specific test */ + test_id: Schemas.digital$experience$monitoring_uuid; } export interface Response$dex$endpoints$http$test$percentiles$Status$200 { "application/json": Schemas.digital$experience$monitoring_api$response$single & { @@ -19483,8 +19483,6 @@ export interface Response$dex$endpoints$http$test$percentiles$Status$4XX { "application/json": Schemas.digital$experience$monitoring_api$response$common$failure; } export interface Parameter$dex$endpoints$list$tests { - /** unique identifier linked to an account in the API request path. */ - account_id: Schemas.digital$experience$monitoring_account_identifier; /** Optionally filter result stats to a Cloudflare colo. Cannot be used in combination with deviceId param. */ colo?: string; /** Optionally filter results by test name */ @@ -19495,6 +19493,8 @@ export interface Parameter$dex$endpoints$list$tests { page?: number; /** Number of items per page */ per_page?: number; + /** unique identifier linked to an account in the API request path. */ + account_id: Schemas.digital$experience$monitoring_account_identifier; } export interface Response$dex$endpoints$list$tests$Status$200 { "application/json": Schemas.digital$experience$monitoring_api$response$single & { @@ -19506,12 +19506,12 @@ export interface Response$dex$endpoints$list$tests$Status$4XX { "application/json": Schemas.digital$experience$monitoring_api$response$common$failure; } export interface Parameter$dex$endpoints$tests$unique$devices { - /** unique identifier linked to an account in the API request path. */ - account_id: Schemas.digital$experience$monitoring_account_identifier; /** Optionally filter results by test name */ testName?: string; /** Optionally filter result stats to a specific device(s). Cannot be used in combination with colo param. */ deviceId?: string[]; + /** unique identifier linked to an account in the API request path. */ + account_id: Schemas.digital$experience$monitoring_account_identifier; } export interface Response$dex$endpoints$tests$unique$devices$Status$200 { "application/json": Schemas.digital$experience$monitoring_api$response$single & { @@ -19536,10 +19536,6 @@ export interface Response$dex$endpoints$traceroute$test$result$network$path$Stat "application/json": Schemas.digital$experience$monitoring_api$response$common$failure; } export interface Parameter$dex$endpoints$traceroute$test$details { - /** Unique identifier linked to an account */ - account_id: Schemas.digital$experience$monitoring_account_identifier; - /** Unique identifier for a specific test */ - test_id: Schemas.digital$experience$monitoring_uuid; /** Optionally filter result stats to a specific device(s). Cannot be used in combination with colo param. */ deviceId?: string[]; /** Start time for aggregate metrics in ISO ms */ @@ -19550,6 +19546,10 @@ export interface Parameter$dex$endpoints$traceroute$test$details { interval: "minute" | "hour"; /** Optionally filter result stats to a Cloudflare colo. Cannot be used in combination with deviceId param. */ colo?: string; + /** Unique identifier linked to an account */ + account_id: Schemas.digital$experience$monitoring_account_identifier; + /** Unique identifier for a specific test */ + test_id: Schemas.digital$experience$monitoring_uuid; } export interface Response$dex$endpoints$traceroute$test$details$Status$200 { "application/json": Schemas.digital$experience$monitoring_api$response$single & { @@ -19560,10 +19560,6 @@ export interface Response$dex$endpoints$traceroute$test$details$Status$4XX { "application/json": Schemas.digital$experience$monitoring_api$response$common$failure; } export interface Parameter$dex$endpoints$traceroute$test$network$path { - /** unique identifier linked to an account */ - account_id: Schemas.digital$experience$monitoring_account_identifier; - /** unique identifier for a specific test */ - test_id: Schemas.digital$experience$monitoring_uuid; /** Device to filter tracroute result runs to */ deviceId: string; /** Start time for aggregate metrics in ISO ms */ @@ -19572,6 +19568,10 @@ export interface Parameter$dex$endpoints$traceroute$test$network$path { timeEnd: string; /** Time interval for aggregate time slots. */ interval: "minute" | "hour"; + /** unique identifier linked to an account */ + account_id: Schemas.digital$experience$monitoring_account_identifier; + /** unique identifier for a specific test */ + test_id: Schemas.digital$experience$monitoring_uuid; } export interface Response$dex$endpoints$traceroute$test$network$path$Status$200 { "application/json": Schemas.digital$experience$monitoring_api$response$single & { @@ -19582,10 +19582,6 @@ export interface Response$dex$endpoints$traceroute$test$network$path$Status$4XX "application/json": Schemas.digital$experience$monitoring_api$response$common$failure; } export interface Parameter$dex$endpoints$traceroute$test$percentiles { - /** unique identifier linked to an account in the API request path. */ - account_id: Schemas.digital$experience$monitoring_account_identifier; - /** unique identifier for a specific test */ - test_id: Schemas.digital$experience$monitoring_uuid; /** Optionally filter result stats to a specific device(s). Cannot be used in combination with colo param. */ deviceId?: string[]; /** Start time for aggregate metrics in ISO format */ @@ -19594,6 +19590,10 @@ export interface Parameter$dex$endpoints$traceroute$test$percentiles { timeEnd: string; /** Optionally filter result stats to a Cloudflare colo. Cannot be used in combination with deviceId param. */ colo?: string; + /** unique identifier linked to an account in the API request path. */ + account_id: Schemas.digital$experience$monitoring_account_identifier; + /** unique identifier for a specific test */ + test_id: Schemas.digital$experience$monitoring_uuid; } export interface Response$dex$endpoints$traceroute$test$percentiles$Status$200 { "application/json": Schemas.digital$experience$monitoring_api$response$single & { @@ -19799,9 +19799,9 @@ export interface Response$dlp$profiles$update$predefined$profile$Status$4XX { "application/json": Schemas.dlp_predefined_profile & Schemas.dlp_api$response$common$failure; } export interface Parameter$dns$firewall$list$dns$firewall$clusters { - account_id: Schemas.dns$firewall_identifier; page?: number; per_page?: number; + account_id: Schemas.dns$firewall_identifier; } export interface Response$dns$firewall$list$dns$firewall$clusters$Status$200 { "application/json": Schemas.dns$firewall_dns_firewall_response_collection; @@ -20357,9 +20357,9 @@ export interface Response$delete$hyperdrive$Status$4XX { }) & Schemas.hyperdrive_api$response$common$failure; } export interface Parameter$cloudflare$images$list$images { - account_id: Schemas.images_account_identifier; page?: number; per_page?: number; + account_id: Schemas.images_account_identifier; } export interface Response$cloudflare$images$list$images$Status$200 { "application/json": Schemas.images_images_list_response; @@ -20495,10 +20495,10 @@ export interface Response$cloudflare$images$variants$update$a$variant$Status$4XX "application/json": Schemas.images_image_variant_simple_response & Schemas.images_api$response$common$failure; } export interface Parameter$cloudflare$images$list$images$v2 { - account_id: Schemas.images_account_identifier; continuation_token?: string | null; per_page?: number; sort_order?: "asc" | "desc"; + account_id: Schemas.images_account_identifier; } export interface Response$cloudflare$images$list$images$v2$Status$200 { "application/json": Schemas.images_images_list_response_v2; @@ -20553,11 +20553,11 @@ export interface Response$asn$intelligence$get$asn$subnets$Status$4XX { } & Schemas.intel_api$response$common$failure; } export interface Parameter$passive$dns$by$ip$get$passive$dns$by$ip { - account_id: Schemas.intel_identifier; start_end_params?: Schemas.intel_start_end_params; ipv4?: string; page?: number; per_page?: number; + account_id: Schemas.intel_identifier; } export interface Response$passive$dns$by$ip$get$passive$dns$by$ip$Status$200 { "application/json": Schemas.intel_components$schemas$single_response; @@ -20566,8 +20566,8 @@ export interface Response$passive$dns$by$ip$get$passive$dns$by$ip$Status$4XX { "application/json": Schemas.intel_components$schemas$single_response & Schemas.intel_api$response$common$failure; } export interface Parameter$domain$intelligence$get$domain$details { - account_id: Schemas.intel_identifier; domain?: string; + account_id: Schemas.intel_identifier; } export interface Response$domain$intelligence$get$domain$details$Status$200 { "application/json": Schemas.intel_single_response; @@ -20576,8 +20576,8 @@ export interface Response$domain$intelligence$get$domain$details$Status$4XX { "application/json": Schemas.intel_single_response & Schemas.intel_api$response$common$failure; } export interface Parameter$domain$history$get$domain$history { - account_id: Schemas.intel_identifier; domain?: any; + account_id: Schemas.intel_identifier; } export interface Response$domain$history$get$domain$history$Status$200 { "application/json": Schemas.intel_response; @@ -20586,8 +20586,8 @@ export interface Response$domain$history$get$domain$history$Status$4XX { "application/json": Schemas.intel_response & Schemas.intel_api$response$common$failure; } export interface Parameter$domain$intelligence$get$multiple$domain$details { - account_id: Schemas.intel_identifier; domain?: any; + account_id: Schemas.intel_identifier; } export interface Response$domain$intelligence$get$multiple$domain$details$Status$200 { "application/json": Schemas.intel_collection_response; @@ -20596,9 +20596,9 @@ export interface Response$domain$intelligence$get$multiple$domain$details$Status "application/json": Schemas.intel_collection_response & Schemas.intel_api$response$common$failure; } export interface Parameter$ip$intelligence$get$ip$overview { - account_id: Schemas.intel_identifier; ipv4?: string; ipv6?: string; + account_id: Schemas.intel_identifier; } export interface Response$ip$intelligence$get$ip$overview$Status$200 { "application/json": Schemas.intel_schemas$response; @@ -20628,8 +20628,8 @@ export interface Response$miscategorization$create$miscategorization$Status$4XX "application/json": Schemas.intel_api$response$single & Schemas.intel_api$response$common$failure; } export interface Parameter$whois$record$get$whois$record { - account_id: Schemas.intel_identifier; domain?: string; + account_id: Schemas.intel_identifier; } export interface Response$whois$record$get$whois$record$Status$200 { "application/json": Schemas.intel_schemas$single_response; @@ -21024,13 +21024,13 @@ export interface Response$pages$purge$build$cache$Status$4XX { "application/json": Schemas.pages_api$response$common$failure; } export interface Parameter$r2$list$buckets { - account_id: Schemas.r2_account_identifier; name_contains?: string; start_after?: string; per_page?: number; order?: "name"; direction?: "asc" | "desc"; cursor?: string; + account_id: Schemas.r2_account_identifier; } export interface Response$r2$list$buckets$Status$200 { "application/json": Schemas.r2_v4_response_list & { @@ -21213,11 +21213,11 @@ export interface Response$lists$delete$a$list$Status$4XX { "application/json": Schemas.lists_list$delete$response$collection & Schemas.lists_api$response$common$failure; } export interface Parameter$lists$get$list$items { - list_id: Schemas.lists_list_id; - account_id: Schemas.lists_identifier; cursor?: string; per_page?: number; search?: string; + list_id: Schemas.lists_list_id; + account_id: Schemas.lists_identifier; } export interface Response$lists$get$list$items$Status$200 { "application/json": Schemas.lists_items$list$response$collection; @@ -21471,7 +21471,6 @@ export interface Response$getAccountEntrypointRulesetVersion$Status$4XX { "application/json": Schemas.rulesets_FailureResponse; } export interface Parameter$stream$videos$list$videos { - account_id: Schemas.stream_account_identifier; status?: Schemas.stream_media_state; creator?: Schemas.stream_creator; type?: Schemas.stream_type; @@ -21480,6 +21479,7 @@ export interface Parameter$stream$videos$list$videos { start?: Schemas.stream_start; end?: Schemas.stream_end; include_counts?: Schemas.stream_include_counts; + account_id: Schemas.stream_account_identifier; } export interface Response$stream$videos$list$videos$Status$200 { "application/json": Schemas.stream_video_response_collection; @@ -21680,9 +21680,9 @@ export interface Response$stream$video$clipping$clip$videos$given$a$start$and$en "application/json": Schemas.stream_api$response$common$failure; } export interface Parameter$stream$videos$upload$videos$from$a$url { - account_id: Schemas.stream_account_identifier; "Upload-Creator"?: Schemas.stream_creator; "Upload-Metadata"?: Schemas.stream_upload_metadata; + account_id: Schemas.stream_account_identifier; } export interface RequestBody$stream$videos$upload$videos$from$a$url { "application/json": Schemas.stream_video_copy_request; @@ -21694,8 +21694,8 @@ export interface Response$stream$videos$upload$videos$from$a$url$Status$4XX { "application/json": Schemas.stream_api$response$common$failure; } export interface Parameter$stream$videos$upload$videos$via$direct$upload$ur$ls { - account_id: Schemas.stream_account_identifier; "Upload-Creator"?: Schemas.stream_creator; + account_id: Schemas.stream_account_identifier; } export interface RequestBody$stream$videos$upload$videos$via$direct$upload$ur$ls { "application/json": Schemas.stream_direct_upload_request; @@ -21735,8 +21735,8 @@ export interface Response$stream$signing$keys$delete$signing$keys$Status$4XX { "application/json": Schemas.stream_api$response$common$failure; } export interface Parameter$stream$live$inputs$list$live$inputs { - account_id: Schemas.stream_schemas$identifier; include_counts?: Schemas.stream_include_counts; + account_id: Schemas.stream_schemas$identifier; } export interface Response$stream$live$inputs$list$live$inputs$Status$200 { "application/json": Schemas.stream_live_input_response_collection; @@ -21834,8 +21834,8 @@ export interface Response$stream$live$inputs$delete$an$output$Status$200 { export interface Response$stream$live$inputs$delete$an$output$Status$4XX { } export interface Parameter$stream$videos$storage$usage { - account_id: Schemas.stream_account_identifier; creator?: Schemas.stream_creator; + account_id: Schemas.stream_account_identifier; } export interface Response$stream$videos$storage$usage$Status$200 { "application/json": Schemas.stream_storage_use_response; @@ -21917,7 +21917,6 @@ export interface Response$stream$webhook$delete$webhooks$Status$4XX { "application/json": Schemas.stream_api$response$common$failure; } export interface Parameter$tunnel$route$list$tunnel$routes { - account_id: Schemas.tunnel_cf_account_id; comment?: Schemas.tunnel_comment; is_deleted?: any; network_subset?: any; @@ -21929,6 +21928,7 @@ export interface Parameter$tunnel$route$list$tunnel$routes { virtual_network_id?: any; per_page?: Schemas.tunnel_per_page; page?: number; + account_id: Schemas.tunnel_cf_account_id; } export interface Response$tunnel$route$list$tunnel$routes$Status$200 { "application/json": Schemas.tunnel_teamnet_response_collection; @@ -21983,9 +21983,9 @@ export interface Response$tunnel$route$update$a$tunnel$route$Status$4XX { "application/json": Schemas.tunnel_route_response_single & Schemas.tunnel_api$response$common$failure; } export interface Parameter$tunnel$route$get$tunnel$route$by$ip { + virtual_network_id?: Schemas.tunnel_route_virtual_network_id; ip: Schemas.tunnel_ip; account_id: Schemas.tunnel_cf_account_id; - virtual_network_id?: Schemas.tunnel_route_virtual_network_id; } export interface Response$tunnel$route$get$tunnel$route$by$ip$Status$200 { "application/json": Schemas.tunnel_teamnet_response_single; @@ -22011,11 +22011,11 @@ export interface Response$tunnel$route$create$a$tunnel$route$with$cidr$Status$4X "application/json": Schemas.tunnel_route_response_single & Schemas.tunnel_api$response$common$failure; } export interface Parameter$tunnel$route$delete$a$tunnel$route$with$cidr { - ip_network_encoded: Schemas.tunnel_ip_network_encoded; - account_id: Schemas.tunnel_cf_account_id; virtual_network_id?: Schemas.tunnel_vnet_id; tun_type?: Schemas.tunnel_tunnel_type; tunnel_id?: Schemas.tunnel_tunnel_id; + ip_network_encoded: Schemas.tunnel_ip_network_encoded; + account_id: Schemas.tunnel_cf_account_id; } export interface Response$tunnel$route$delete$a$tunnel$route$with$cidr$Status$200 { "application/json": Schemas.tunnel_route_response_single; @@ -22034,12 +22034,12 @@ export interface Response$tunnel$route$update$a$tunnel$route$with$cidr$Status$4X "application/json": Schemas.tunnel_route_response_single & Schemas.tunnel_api$response$common$failure; } export interface Parameter$tunnel$virtual$network$list$virtual$networks { - account_id: Schemas.tunnel_cf_account_id; name?: Schemas.tunnel_vnet_name; is_default?: any; is_deleted?: any; vnet_name?: Schemas.tunnel_vnet_name; vnet_id?: string; + account_id: Schemas.tunnel_cf_account_id; } export interface Response$tunnel$virtual$network$list$virtual$networks$Status$200 { "application/json": Schemas.tunnel_vnet_response_collection; @@ -22091,7 +22091,6 @@ export interface Response$tunnel$virtual$network$update$a$virtual$network$Status "application/json": Schemas.tunnel_vnet_response_single & Schemas.tunnel_api$response$common$failure; } export interface Parameter$cloudflare$tunnel$list$all$tunnels { - account_id: Schemas.tunnel_cf_account_id; name?: string; is_deleted?: boolean; existed_at?: Schemas.tunnel_existed_at; @@ -22103,6 +22102,7 @@ export interface Parameter$cloudflare$tunnel$list$all$tunnels { tun_types?: Schemas.tunnel_tunnel_types; per_page?: Schemas.tunnel_per_page; page?: number; + account_id: Schemas.tunnel_cf_account_id; } export interface Response$cloudflare$tunnel$list$all$tunnels$Status$200 { "application/json": Schemas.tunnel_tunnel$response$collection; @@ -22163,7 +22163,6 @@ export interface Response$argo$tunnel$clean$up$argo$tunnel$connections$Status$4X "application/json": Schemas.tunnel_empty_response & Schemas.tunnel_api$response$common$failure; } export interface Parameter$cloudflare$tunnel$list$warp$connector$tunnels { - account_id: Schemas.tunnel_cf_account_id; name?: string; is_deleted?: boolean; existed_at?: Schemas.tunnel_existed_at; @@ -22174,6 +22173,7 @@ export interface Parameter$cloudflare$tunnel$list$warp$connector$tunnels { exclude_prefix?: string; per_page?: Schemas.tunnel_per_page; page?: number; + account_id: Schemas.tunnel_cf_account_id; } export interface Response$cloudflare$tunnel$list$warp$connector$tunnels$Status$200 { "application/json": Schemas.tunnel_tunnel$response$collection; @@ -22306,11 +22306,11 @@ export type RequestBody$namespace$worker$script$upload$worker$module = RequestBo export type Response$namespace$worker$script$upload$worker$module$Status$200 = Responses.workers_200.Content; export type Response$namespace$worker$script$upload$worker$module$Status$4XX = Responses.workers_4XX.Content; export interface Parameter$namespace$worker$script$delete$worker { + /** If set to true, delete will not be stopped by associated service binding, durable object, or other binding. Any of these associated bindings/durable objects will be deleted along with the script. */ + force?: boolean; account_id: Schemas.workers_identifier; dispatch_namespace: Schemas.workers_dispatch_namespace_name; script_name: Schemas.workers_script_name; - /** If set to true, delete will not be stopped by associated service binding, durable object, or other binding. Any of these associated bindings/durable objects will be deleted along with the script. */ - force?: boolean; } export interface Response$namespace$worker$script$delete$worker$Status$200 { } @@ -22328,13 +22328,13 @@ export interface Response$namespace$worker$get$script$content$Status$4XX { "application/json": Schemas.workers_api$response$common; } export interface Parameter$namespace$worker$put$script$content { - account_id: Schemas.workers_identifier; - dispatch_namespace: Schemas.workers_dispatch_namespace_name; - script_name: Schemas.workers_script_name; /** The multipart name of a script upload part containing script content in service worker format. Alternative to including in a metadata part. */ "CF-WORKER-BODY-PART"?: string; /** The multipart name of a script upload part containing script content in es module format. Alternative to including in a metadata part. */ "CF-WORKER-MAIN-MODULE-PART"?: string; + account_id: Schemas.workers_identifier; + dispatch_namespace: Schemas.workers_dispatch_namespace_name; + script_name: Schemas.workers_script_name; } export interface RequestBody$namespace$worker$put$script$content { "multipart/form-data": { @@ -22381,12 +22381,12 @@ export interface Response$namespace$worker$patch$script$settings$Status$4XX { "application/json": Schemas.workers_api$response$common; } export interface Parameter$worker$domain$list$domains { - account_id: Schemas.workers_account_identifier; zone_name?: Schemas.workers_zone_name; service?: Schemas.workers_schemas$service; zone_id?: Schemas.workers_zone_identifier; hostname?: string; environment?: string; + account_id: Schemas.workers_account_identifier; } export interface Response$worker$domain$list$domains$Status$200 { "application/json": Schemas.workers_domain$response$collection; @@ -22443,10 +22443,10 @@ export interface Response$durable$objects$namespace$list$namespaces$Status$4XX { }) & Schemas.workers_api$response$common$failure; } export interface Parameter$durable$objects$namespace$list$objects { - id: Schemas.workers_schemas$id; - account_id: Schemas.workers_identifier; limit?: number; cursor?: string; + id: Schemas.workers_schemas$id; + account_id: Schemas.workers_identifier; } export interface Response$durable$objects$namespace$list$objects$Status$200 { "application/json": Schemas.workers_api$response$collection & { @@ -22674,10 +22674,10 @@ export interface Response$worker$script$download$worker$Status$4XX { undefined: any; } export interface Parameter$worker$script$upload$worker$module { - script_name: Schemas.workers_script_name; - account_id: Schemas.workers_identifier; /** Rollback to provided deployment based on deployment ID. Request body will only parse a "message" part. You can learn more about deployments [here](https://developers.cloudflare.com/workers/platform/deployments/). */ rollback_to?: Schemas.workers_uuid; + script_name: Schemas.workers_script_name; + account_id: Schemas.workers_identifier; } export type RequestBody$worker$script$upload$worker$module = RequestBodies.workers_script_upload.Content; export interface Response$worker$script$upload$worker$module$Status$200 { @@ -22687,22 +22687,22 @@ export interface Response$worker$script$upload$worker$module$Status$4XX { "application/json": any & Schemas.workers_api$response$common$failure; } export interface Parameter$worker$script$delete$worker { - script_name: Schemas.workers_script_name; - account_id: Schemas.workers_identifier; /** If set to true, delete will not be stopped by associated service binding, durable object, or other binding. Any of these associated bindings/durable objects will be deleted along with the script. */ force?: boolean; + script_name: Schemas.workers_script_name; + account_id: Schemas.workers_identifier; } export interface Response$worker$script$delete$worker$Status$200 { } export interface Response$worker$script$delete$worker$Status$4XX { } export interface Parameter$worker$script$put$content { - account_id: Schemas.workers_identifier; - script_name: Schemas.workers_script_name; /** The multipart name of a script upload part containing script content in service worker format. Alternative to including in a metadata part. */ "CF-WORKER-BODY-PART"?: string; /** The multipart name of a script upload part containing script content in es module format. Alternative to including in a metadata part. */ "CF-WORKER-MAIN-MODULE-PART"?: string; + account_id: Schemas.workers_identifier; + script_name: Schemas.workers_script_name; } export interface RequestBody$worker$script$put$content { "multipart/form-data": { @@ -22847,13 +22847,13 @@ export interface Response$worker$environment$get$script$content$Status$4XX { "application/json": Schemas.workers_api$response$common$failure; } export interface Parameter$worker$environment$put$script$content { - account_id: Schemas.workers_identifier; - service_name: Schemas.workers_service; - environment_name: Schemas.workers_environment; /** The multipart name of a script upload part containing script content in service worker format. Alternative to including in a metadata part. */ "CF-WORKER-BODY-PART"?: string; /** The multipart name of a script upload part containing script content in es module format. Alternative to including in a metadata part. */ "CF-WORKER-MAIN-MODULE-PART"?: string; + account_id: Schemas.workers_identifier; + service_name: Schemas.workers_service; + environment_name: Schemas.workers_environment; } export interface RequestBody$worker$environment$put$script$content { "multipart/form-data": { @@ -23324,7 +23324,6 @@ export interface Response$workers$ai$post$run$model$Status$400 { }; } export interface Parameter$audit$logs$get$account$audit$logs { - account_identifier: Schemas.w2PBr26F_identifier; id?: string; export?: boolean; "action.type"?: string; @@ -23337,6 +23336,7 @@ export interface Parameter$audit$logs$get$account$audit$logs { per_page?: number; page?: number; hide_user_logs?: boolean; + account_identifier: Schemas.w2PBr26F_identifier; } export interface Response$audit$logs$get$account$audit$logs$Status$200 { "application/json": Schemas.w2PBr26F_audit_logs_response_collection; @@ -23354,11 +23354,11 @@ export interface Response$account$billing$profile$$$deprecated$$billing$profile$ "application/json": Schemas.bill$subs$api_billing_response_single & Schemas.bill$subs$api_api$response$common$failure; } export interface Parameter$accounts$turnstile$widgets$list { - account_identifier: Schemas.grwMffPV_identifier; page?: number; per_page?: number; order?: "id" | "sitekey" | "name" | "created_on" | "modified_on"; direction?: "asc" | "desc"; + account_identifier: Schemas.grwMffPV_identifier; } export interface Response$accounts$turnstile$widgets$list$Status$200 { "application/json": Schemas.grwMffPV_api$response$common & { @@ -23371,11 +23371,11 @@ export interface Response$accounts$turnstile$widgets$list$Status$4XX { "application/json": Schemas.grwMffPV_api$response$common$failure; } export interface Parameter$accounts$turnstile$widget$create { - account_identifier: Schemas.grwMffPV_identifier; page?: number; per_page?: number; order?: "id" | "sitekey" | "name" | "created_on" | "modified_on"; direction?: "asc" | "desc"; + account_identifier: Schemas.grwMffPV_identifier; } export interface RequestBody$accounts$turnstile$widget$create { "application/json": { @@ -23561,8 +23561,6 @@ export interface Response$diagnostics$traceroute$Status$4XX { "application/json": Schemas.aMMS9DAQ_traceroute_response_collection & Schemas.aMMS9DAQ_api$response$common$failure; } export interface Parameter$dns$firewall$analytics$table { - identifier: Schemas.erIwb89A_identifier; - account_identifier: Schemas.erIwb89A_identifier; metrics?: Schemas.erIwb89A_metrics; dimensions?: Schemas.erIwb89A_dimensions; since?: Schemas.erIwb89A_since; @@ -23570,6 +23568,8 @@ export interface Parameter$dns$firewall$analytics$table { limit?: Schemas.erIwb89A_limit; sort?: Schemas.erIwb89A_sort; filters?: Schemas.erIwb89A_filters; + identifier: Schemas.erIwb89A_identifier; + account_identifier: Schemas.erIwb89A_identifier; } export interface Response$dns$firewall$analytics$table$Status$200 { "application/json": Schemas.erIwb89A_api$response$single & { @@ -23582,8 +23582,6 @@ export interface Response$dns$firewall$analytics$table$Status$4XX { }) & Schemas.erIwb89A_api$response$common$failure; } export interface Parameter$dns$firewall$analytics$by$time { - identifier: Schemas.erIwb89A_identifier; - account_identifier: Schemas.erIwb89A_identifier; metrics?: Schemas.erIwb89A_metrics; dimensions?: Schemas.erIwb89A_dimensions; since?: Schemas.erIwb89A_since; @@ -23592,6 +23590,8 @@ export interface Parameter$dns$firewall$analytics$by$time { sort?: Schemas.erIwb89A_sort; filters?: Schemas.erIwb89A_filters; time_delta?: Schemas.erIwb89A_time_delta; + identifier: Schemas.erIwb89A_identifier; + account_identifier: Schemas.erIwb89A_identifier; } export interface Response$dns$firewall$analytics$by$time$Status$200 { "application/json": Schemas.erIwb89A_api$response$single & { @@ -23604,11 +23604,11 @@ export interface Response$dns$firewall$analytics$by$time$Status$4XX { }) & Schemas.erIwb89A_api$response$common$failure; } export interface Parameter$email$routing$destination$addresses$list$destination$addresses { - account_identifier: Schemas.email_identifier; page?: number; per_page?: number; direction?: "asc" | "desc"; verified?: true | false; + account_identifier: Schemas.email_identifier; } export interface Response$email$routing$destination$addresses$list$destination$addresses$Status$200 { "application/json": Schemas.email_destination_addresses_response_collection; @@ -23637,13 +23637,13 @@ export interface Response$email$routing$destination$addresses$delete$destination "application/json": Schemas.email_destination_address_response_single; } export interface Parameter$ip$access$rules$for$an$account$list$ip$access$rules { - account_identifier: Schemas.legacy$jhs_account_identifier; filters?: Schemas.legacy$jhs_schemas$filters; "egs-pagination.json"?: Schemas.legacy$jhs_egs$pagination; page?: number; per_page?: number; order?: "configuration.target" | "configuration.value" | "mode"; direction?: "asc" | "desc"; + account_identifier: Schemas.legacy$jhs_account_identifier; } export interface Response$ip$access$rules$for$an$account$list$ip$access$rules$Status$200 { "application/json": Schemas.legacy$jhs_response_collection; @@ -23895,8 +23895,8 @@ export interface Response$account$load$balancer$monitors$list$monitor$references "application/json": Schemas.load$balancing_references_response & Schemas.load$balancing_api$response$common$failure; } export interface Parameter$account$load$balancer$pools$list$pools { - account_identifier: Schemas.load$balancing_components$schemas$identifier; monitor?: any; + account_identifier: Schemas.load$balancing_components$schemas$identifier; } export interface Response$account$load$balancer$pools$list$pools$Status$200 { "application/json": Schemas.load$balancing_schemas$response_collection; @@ -24065,10 +24065,10 @@ export interface Response$account$load$balancer$monitors$preview$result$Status$4 "application/json": Schemas.load$balancing_preview_result_response & Schemas.load$balancing_api$response$common$failure; } export interface Parameter$load$balancer$regions$list$regions { - account_identifier: Schemas.load$balancing_components$schemas$identifier; subdivision_code?: Schemas.load$balancing_subdivision_code_a2; subdivision_code_a2?: Schemas.load$balancing_subdivision_code_a2; country_code_a2?: string; + account_identifier: Schemas.load$balancing_components$schemas$identifier; } export interface Response$load$balancer$regions$list$regions$Status$200 { "application/json": Schemas.load$balancing_region_components$schemas$response_collection; @@ -24087,10 +24087,10 @@ export interface Response$load$balancer$regions$get$region$Status$4XX { "application/json": Schemas.load$balancing_components$schemas$single_response & Schemas.load$balancing_api$response$common$failure; } export interface Parameter$account$load$balancer$search$search$resources { - account_identifier: Schemas.load$balancing_components$schemas$identifier; search_params?: Schemas.load$balancing_search_params; page?: any; per_page?: any; + account_identifier: Schemas.load$balancing_components$schemas$identifier; } export interface Response$account$load$balancer$search$search$resources$Status$200 { "application/json": Schemas.load$balancing_api$response$collection & Schemas.load$balancing_search_result; @@ -24378,12 +24378,12 @@ export interface Response$magic$static$routes$delete$route$Status$4XX { "application/json": Schemas.magic_route_deleted_response & Schemas.magic_api$response$common$failure; } export interface Parameter$account$members$list$members { - account_identifier: Schemas.mrUXABdt_account_identifier; order?: "user.first_name" | "user.last_name" | "user.email" | "status"; status?: "accepted" | "pending" | "rejected"; page?: number; per_page?: number; direction?: "asc" | "desc"; + account_identifier: Schemas.mrUXABdt_account_identifier; } export interface Response$account$members$list$members$Status$200 { "application/json": Schemas.mrUXABdt_collection_member_response; @@ -24839,10 +24839,10 @@ export interface Response$web$analytics$delete$site$Status$4XX { "application/json": Schemas.X3uh9Izk_api$response$common$failure; } export interface Parameter$web$analytics$list$sites { - account_identifier: Schemas.X3uh9Izk_identifier; per_page?: Schemas.X3uh9Izk_per_page; page?: Schemas.X3uh9Izk_page; order_by?: Schemas.X3uh9Izk_order_by; + account_identifier: Schemas.X3uh9Izk_identifier; } export interface Response$web$analytics$list$sites$Status$200 { "application/json": Schemas.X3uh9Izk_sites$response$collection; @@ -25079,13 +25079,13 @@ export interface Response$secondary$dns$$$tsig$$delete$tsig$Status$4XX { "application/json": Schemas.vusJxt3o_schemas$id_response & Schemas.vusJxt3o_api$response$common$failure; } export interface Parameter$workers$kv$request$analytics$query$request$analytics { - account_identifier: Schemas.workers$kv_identifier; query?: Schemas.workers$kv_query & { dimensions?: ("accountId" | "responseCode" | "requestType")[]; filters?: any; metrics?: ("requests" | "writeKiB" | "readKiB")[]; sort?: any; }; + account_identifier: Schemas.workers$kv_identifier; } export interface Response$workers$kv$request$analytics$query$request$analytics$Status$200 { "application/json": Schemas.workers$kv_api$response$single & { @@ -25098,13 +25098,13 @@ export interface Response$workers$kv$request$analytics$query$request$analytics$S }) & Schemas.workers$kv_api$response$common$failure; } export interface Parameter$workers$kv$stored$data$analytics$query$stored$data$analytics { - account_identifier: Schemas.workers$kv_identifier; query?: Schemas.workers$kv_query & { dimensions?: ("namespaceId")[]; filters?: any; metrics?: ("storedBytes" | "storedKeys")[]; sort?: any; }; + account_identifier: Schemas.workers$kv_identifier; } export interface Response$workers$kv$stored$data$analytics$query$stored$data$analytics$Status$200 { "application/json": Schemas.workers$kv_api$response$single & { @@ -25117,11 +25117,11 @@ export interface Response$workers$kv$stored$data$analytics$query$stored$data$ana }) & Schemas.workers$kv_api$response$common$failure; } export interface Parameter$workers$kv$namespace$list$namespaces { - account_identifier: Schemas.workers$kv_identifier; page?: number; per_page?: number; order?: "id" | "title"; direction?: "asc" | "desc"; + account_identifier: Schemas.workers$kv_identifier; } export interface Response$workers$kv$namespace$list$namespaces$Status$200 { "application/json": Schemas.workers$kv_api$response$collection & { @@ -25199,11 +25199,11 @@ export interface Response$workers$kv$namespace$delete$multiple$key$value$pairs$S "application/json": Schemas.workers$kv_api$response$single & Schemas.workers$kv_api$response$common$failure; } export interface Parameter$workers$kv$namespace$list$a$namespace$$s$keys { - namespace_identifier: Schemas.workers$kv_namespace_identifier; - account_identifier: Schemas.workers$kv_identifier; limit?: number; prefix?: string; cursor?: string; + namespace_identifier: Schemas.workers$kv_namespace_identifier; + account_identifier: Schemas.workers$kv_identifier; } export interface Response$workers$kv$namespace$list$a$namespace$$s$keys$Status$200 { "application/json": Schemas.workers$kv_api$response$common & { @@ -25515,7 +25515,6 @@ export interface Response$ip$address$management$address$maps$remove$an$account$m "application/json": Schemas.addressing_api$response$collection & Schemas.addressing_api$response$common$failure; } export interface Parameter$urlscanner$search$scans { - accountId: string; scanId?: string; limit?: number; next_cursor?: string; @@ -25528,6 +25527,7 @@ export interface Parameter$urlscanner$search$scans { page_hostname?: string; page_path?: string; account_scans?: boolean; + accountId: string; } export interface Response$urlscanner$search$scans$Status$200 { "application/json": { @@ -26133,9 +26133,9 @@ export interface Response$urlscanner$get$scan$har$Status$404 { }; } export interface Parameter$urlscanner$get$scan$screenshot { + resolution?: "desktop" | "mobile" | "tablet"; scanId: string; accountId: string; - resolution?: "desktop" | "mobile" | "tablet"; } export interface Response$urlscanner$get$scan$screenshot$Status$200 { /** PNG Image */ @@ -27739,7 +27739,6 @@ export interface Response$organizations$$$deprecated$$edit$organization$Status$4 "application/json": Schemas.mrUXABdt_single_organization_response & Schemas.mrUXABdt_api$response$common$failure; } export interface Parameter$audit$logs$get$organization$audit$logs { - organization_identifier: Schemas.w2PBr26F_identifier; id?: string; export?: boolean; "action.type"?: string; @@ -27752,6 +27751,7 @@ export interface Parameter$audit$logs$get$organization$audit$logs { per_page?: number; page?: number; hide_user_logs?: boolean; + organization_identifier: Schemas.w2PBr26F_identifier; } export interface Response$audit$logs$get$organization$audit$logs$Status$200 { "application/json": Schemas.w2PBr26F_audit_logs_response_collection; @@ -28580,7 +28580,6 @@ export interface Response$radar$get$dns$as112$top$locations$Status$404 { }; } export interface Parameter$radar$get$dns$as112$top$locations$by$dnssec { - dnssec: "SUPPORTED" | "NOT_SUPPORTED"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -28589,6 +28588,7 @@ export interface Parameter$radar$get$dns$as112$top$locations$by$dnssec { asn?: string[]; location?: string[]; format?: "JSON" | "CSV"; + dnssec: "SUPPORTED" | "NOT_SUPPORTED"; } export interface Response$radar$get$dns$as112$top$locations$by$dnssec$Status$200 { "application/json": { @@ -28629,7 +28629,6 @@ export interface Response$radar$get$dns$as112$top$locations$by$dnssec$Status$404 }; } export interface Parameter$radar$get$dns$as112$top$locations$by$edns { - edns: "SUPPORTED" | "NOT_SUPPORTED"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -28638,6 +28637,7 @@ export interface Parameter$radar$get$dns$as112$top$locations$by$edns { asn?: string[]; location?: string[]; format?: "JSON" | "CSV"; + edns: "SUPPORTED" | "NOT_SUPPORTED"; } export interface Response$radar$get$dns$as112$top$locations$by$edns$Status$200 { "application/json": { @@ -28678,7 +28678,6 @@ export interface Response$radar$get$dns$as112$top$locations$by$edns$Status$404 { }; } export interface Parameter$radar$get$dns$as112$top$locations$by$ip$version { - ip_version: "IPv4" | "IPv6"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -28687,6 +28686,7 @@ export interface Parameter$radar$get$dns$as112$top$locations$by$ip$version { asn?: string[]; location?: string[]; format?: "JSON" | "CSV"; + ip_version: "IPv4" | "IPv6"; } export interface Response$radar$get$dns$as112$top$locations$by$ip$version$Status$200 { "application/json": { @@ -31156,8 +31156,8 @@ export interface Response$radar$get$reports$datasets$Status$400 { }; } export interface Parameter$radar$get$reports$dataset$download { - alias: string; date?: string | null; + alias: string; } export interface Response$radar$get$reports$dataset$download$Status$200 { "text/csv": string; @@ -31981,7 +31981,6 @@ export interface Response$radar$get$email$security$top$ases$by$messages$Status$4 }; } export interface Parameter$radar$get$email$security$top$ases$by$arc { - arc: "PASS" | "NONE" | "FAIL"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -31993,6 +31992,7 @@ export interface Parameter$radar$get$email$security$top$ases$by$arc { dmarc?: ("PASS" | "NONE" | "FAIL")[]; spf?: ("PASS" | "NONE" | "FAIL")[]; format?: "JSON" | "CSV"; + arc: "PASS" | "NONE" | "FAIL"; } export interface Response$radar$get$email$security$top$ases$by$arc$Status$200 { "application/json": { @@ -32033,7 +32033,6 @@ export interface Response$radar$get$email$security$top$ases$by$arc$Status$404 { }; } export interface Parameter$radar$get$email$security$top$ases$by$dkim { - dkim: "PASS" | "NONE" | "FAIL"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -32045,6 +32044,7 @@ export interface Parameter$radar$get$email$security$top$ases$by$dkim { dmarc?: ("PASS" | "NONE" | "FAIL")[]; spf?: ("PASS" | "NONE" | "FAIL")[]; format?: "JSON" | "CSV"; + dkim: "PASS" | "NONE" | "FAIL"; } export interface Response$radar$get$email$security$top$ases$by$dkim$Status$200 { "application/json": { @@ -32085,7 +32085,6 @@ export interface Response$radar$get$email$security$top$ases$by$dkim$Status$404 { }; } export interface Parameter$radar$get$email$security$top$ases$by$dmarc { - dmarc: "PASS" | "NONE" | "FAIL"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -32097,6 +32096,7 @@ export interface Parameter$radar$get$email$security$top$ases$by$dmarc { dkim?: ("PASS" | "NONE" | "FAIL")[]; spf?: ("PASS" | "NONE" | "FAIL")[]; format?: "JSON" | "CSV"; + dmarc: "PASS" | "NONE" | "FAIL"; } export interface Response$radar$get$email$security$top$ases$by$dmarc$Status$200 { "application/json": { @@ -32137,7 +32137,6 @@ export interface Response$radar$get$email$security$top$ases$by$dmarc$Status$404 }; } export interface Parameter$radar$get$email$security$top$ases$by$malicious { - malicious: "MALICIOUS" | "NOT_MALICIOUS"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -32150,6 +32149,7 @@ export interface Parameter$radar$get$email$security$top$ases$by$malicious { dmarc?: ("PASS" | "NONE" | "FAIL")[]; spf?: ("PASS" | "NONE" | "FAIL")[]; format?: "JSON" | "CSV"; + malicious: "MALICIOUS" | "NOT_MALICIOUS"; } export interface Response$radar$get$email$security$top$ases$by$malicious$Status$200 { "application/json": { @@ -32190,7 +32190,6 @@ export interface Response$radar$get$email$security$top$ases$by$malicious$Status$ }; } export interface Parameter$radar$get$email$security$top$ases$by$spam { - spam: "SPAM" | "NOT_SPAM"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -32203,6 +32202,7 @@ export interface Parameter$radar$get$email$security$top$ases$by$spam { dmarc?: ("PASS" | "NONE" | "FAIL")[]; spf?: ("PASS" | "NONE" | "FAIL")[]; format?: "JSON" | "CSV"; + spam: "SPAM" | "NOT_SPAM"; } export interface Response$radar$get$email$security$top$ases$by$spam$Status$200 { "application/json": { @@ -32243,7 +32243,6 @@ export interface Response$radar$get$email$security$top$ases$by$spam$Status$404 { }; } export interface Parameter$radar$get$email$security$top$ases$by$spf { - spf: "PASS" | "NONE" | "FAIL"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -32255,6 +32254,7 @@ export interface Parameter$radar$get$email$security$top$ases$by$spf { dkim?: ("PASS" | "NONE" | "FAIL")[]; dmarc?: ("PASS" | "NONE" | "FAIL")[]; format?: "JSON" | "CSV"; + spf: "PASS" | "NONE" | "FAIL"; } export interface Response$radar$get$email$security$top$ases$by$spf$Status$200 { "application/json": { @@ -32347,7 +32347,6 @@ export interface Response$radar$get$email$security$top$locations$by$messages$Sta }; } export interface Parameter$radar$get$email$security$top$locations$by$arc { - arc: "PASS" | "NONE" | "FAIL"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -32359,6 +32358,7 @@ export interface Parameter$radar$get$email$security$top$locations$by$arc { dmarc?: ("PASS" | "NONE" | "FAIL")[]; spf?: ("PASS" | "NONE" | "FAIL")[]; format?: "JSON" | "CSV"; + arc: "PASS" | "NONE" | "FAIL"; } export interface Response$radar$get$email$security$top$locations$by$arc$Status$200 { "application/json": { @@ -32399,7 +32399,6 @@ export interface Response$radar$get$email$security$top$locations$by$arc$Status$4 }; } export interface Parameter$radar$get$email$security$top$locations$by$dkim { - dkim: "PASS" | "NONE" | "FAIL"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -32411,6 +32410,7 @@ export interface Parameter$radar$get$email$security$top$locations$by$dkim { dmarc?: ("PASS" | "NONE" | "FAIL")[]; spf?: ("PASS" | "NONE" | "FAIL")[]; format?: "JSON" | "CSV"; + dkim: "PASS" | "NONE" | "FAIL"; } export interface Response$radar$get$email$security$top$locations$by$dkim$Status$200 { "application/json": { @@ -32451,7 +32451,6 @@ export interface Response$radar$get$email$security$top$locations$by$dkim$Status$ }; } export interface Parameter$radar$get$email$security$top$locations$by$dmarc { - dmarc: "PASS" | "NONE" | "FAIL"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -32463,6 +32462,7 @@ export interface Parameter$radar$get$email$security$top$locations$by$dmarc { dkim?: ("PASS" | "NONE" | "FAIL")[]; spf?: ("PASS" | "NONE" | "FAIL")[]; format?: "JSON" | "CSV"; + dmarc: "PASS" | "NONE" | "FAIL"; } export interface Response$radar$get$email$security$top$locations$by$dmarc$Status$200 { "application/json": { @@ -32503,7 +32503,6 @@ export interface Response$radar$get$email$security$top$locations$by$dmarc$Status }; } export interface Parameter$radar$get$email$security$top$locations$by$malicious { - malicious: "MALICIOUS" | "NOT_MALICIOUS"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -32516,6 +32515,7 @@ export interface Parameter$radar$get$email$security$top$locations$by$malicious { dmarc?: ("PASS" | "NONE" | "FAIL")[]; spf?: ("PASS" | "NONE" | "FAIL")[]; format?: "JSON" | "CSV"; + malicious: "MALICIOUS" | "NOT_MALICIOUS"; } export interface Response$radar$get$email$security$top$locations$by$malicious$Status$200 { "application/json": { @@ -32556,7 +32556,6 @@ export interface Response$radar$get$email$security$top$locations$by$malicious$St }; } export interface Parameter$radar$get$email$security$top$locations$by$spam { - spam: "SPAM" | "NOT_SPAM"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -32569,6 +32568,7 @@ export interface Parameter$radar$get$email$security$top$locations$by$spam { dmarc?: ("PASS" | "NONE" | "FAIL")[]; spf?: ("PASS" | "NONE" | "FAIL")[]; format?: "JSON" | "CSV"; + spam: "SPAM" | "NOT_SPAM"; } export interface Response$radar$get$email$security$top$locations$by$spam$Status$200 { "application/json": { @@ -32609,7 +32609,6 @@ export interface Response$radar$get$email$security$top$locations$by$spam$Status$ }; } export interface Parameter$radar$get$email$security$top$locations$by$spf { - spf: "PASS" | "NONE" | "FAIL"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -32621,6 +32620,7 @@ export interface Parameter$radar$get$email$security$top$locations$by$spf { dkim?: ("PASS" | "NONE" | "FAIL")[]; dmarc?: ("PASS" | "NONE" | "FAIL")[]; format?: "JSON" | "CSV"; + spf: "PASS" | "NONE" | "FAIL"; } export interface Response$radar$get$email$security$top$locations$by$spf$Status$200 { "application/json": { @@ -32696,8 +32696,8 @@ export interface Response$radar$get$entities$asn$list$Status$400 { }; } export interface Parameter$radar$get$entities$asn$by$id { - asn: number; format?: "JSON" | "CSV"; + asn: number; } export interface Response$radar$get$entities$asn$by$id$Status$200 { "application/json": { @@ -32743,9 +32743,9 @@ export interface Response$radar$get$entities$asn$by$id$Status$404 { }; } export interface Parameter$radar$get$asns$rel { - asn: number; asn2?: number; format?: "JSON" | "CSV"; + asn: number; } export interface Response$radar$get$asns$rel$Status$200 { "application/json": { @@ -32878,8 +32878,8 @@ export interface Response$radar$get$entities$locations$Status$400 { }; } export interface Parameter$radar$get$entities$location$by$alpha2 { - location: string; format?: "JSON" | "CSV"; + location: string; } export interface Response$radar$get$entities$location$by$alpha2$Status$200 { "application/json": { @@ -33706,7 +33706,6 @@ export interface Response$radar$get$http$top$ases$by$http$requests$Status$404 { }; } export interface Parameter$radar$get$http$top$ases$by$bot$class { - bot_class: "LIKELY_AUTOMATED" | "LIKELY_HUMAN"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -33721,6 +33720,7 @@ export interface Parameter$radar$get$http$top$ases$by$bot$class { os?: ("WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV")[]; tlsVersion?: ("TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC")[]; format?: "JSON" | "CSV"; + bot_class: "LIKELY_AUTOMATED" | "LIKELY_HUMAN"; } export interface Response$radar$get$http$top$ases$by$bot$class$Status$200 { "application/json": { @@ -33761,7 +33761,6 @@ export interface Response$radar$get$http$top$ases$by$bot$class$Status$404 { }; } export interface Parameter$radar$get$http$top$ases$by$device$type { - device_type: "DESKTOP" | "MOBILE" | "OTHER"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -33776,6 +33775,7 @@ export interface Parameter$radar$get$http$top$ases$by$device$type { os?: ("WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV")[]; tlsVersion?: ("TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC")[]; format?: "JSON" | "CSV"; + device_type: "DESKTOP" | "MOBILE" | "OTHER"; } export interface Response$radar$get$http$top$ases$by$device$type$Status$200 { "application/json": { @@ -33816,7 +33816,6 @@ export interface Response$radar$get$http$top$ases$by$device$type$Status$404 { }; } export interface Parameter$radar$get$http$top$ases$by$http$protocol { - http_protocol: "HTTP" | "HTTPS"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -33831,6 +33830,7 @@ export interface Parameter$radar$get$http$top$ases$by$http$protocol { os?: ("WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV")[]; tlsVersion?: ("TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC")[]; format?: "JSON" | "CSV"; + http_protocol: "HTTP" | "HTTPS"; } export interface Response$radar$get$http$top$ases$by$http$protocol$Status$200 { "application/json": { @@ -33871,7 +33871,6 @@ export interface Response$radar$get$http$top$ases$by$http$protocol$Status$404 { }; } export interface Parameter$radar$get$http$top$ases$by$http$version { - http_version: "HTTPv1" | "HTTPv2" | "HTTPv3"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -33886,6 +33885,7 @@ export interface Parameter$radar$get$http$top$ases$by$http$version { os?: ("WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV")[]; tlsVersion?: ("TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC")[]; format?: "JSON" | "CSV"; + http_version: "HTTPv1" | "HTTPv2" | "HTTPv3"; } export interface Response$radar$get$http$top$ases$by$http$version$Status$200 { "application/json": { @@ -33926,7 +33926,6 @@ export interface Response$radar$get$http$top$ases$by$http$version$Status$404 { }; } export interface Parameter$radar$get$http$top$ases$by$ip$version { - ip_version: "IPv4" | "IPv6"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -33941,6 +33940,7 @@ export interface Parameter$radar$get$http$top$ases$by$ip$version { os?: ("WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV")[]; tlsVersion?: ("TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC")[]; format?: "JSON" | "CSV"; + ip_version: "IPv4" | "IPv6"; } export interface Response$radar$get$http$top$ases$by$ip$version$Status$200 { "application/json": { @@ -33981,7 +33981,6 @@ export interface Response$radar$get$http$top$ases$by$ip$version$Status$404 { }; } export interface Parameter$radar$get$http$top$ases$by$operating$system { - os: "WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -33996,6 +33995,7 @@ export interface Parameter$radar$get$http$top$ases$by$operating$system { ipVersion?: ("IPv4" | "IPv6")[]; tlsVersion?: ("TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC")[]; format?: "JSON" | "CSV"; + os: "WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV"; } export interface Response$radar$get$http$top$ases$by$operating$system$Status$200 { "application/json": { @@ -34036,7 +34036,6 @@ export interface Response$radar$get$http$top$ases$by$operating$system$Status$404 }; } export interface Parameter$radar$get$http$top$ases$by$tls$version { - tls_version: "TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -34051,6 +34050,7 @@ export interface Parameter$radar$get$http$top$ases$by$tls$version { ipVersion?: ("IPv4" | "IPv6")[]; os?: ("WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV")[]; format?: "JSON" | "CSV"; + tls_version: "TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC"; } export interface Response$radar$get$http$top$ases$by$tls$version$Status$200 { "application/json": { @@ -34254,7 +34254,6 @@ export interface Response$radar$get$http$top$locations$by$http$requests$Status$4 }; } export interface Parameter$radar$get$http$top$locations$by$bot$class { - bot_class: "LIKELY_AUTOMATED" | "LIKELY_HUMAN"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -34269,6 +34268,7 @@ export interface Parameter$radar$get$http$top$locations$by$bot$class { os?: ("WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV")[]; tlsVersion?: ("TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC")[]; format?: "JSON" | "CSV"; + bot_class: "LIKELY_AUTOMATED" | "LIKELY_HUMAN"; } export interface Response$radar$get$http$top$locations$by$bot$class$Status$200 { "application/json": { @@ -34309,7 +34309,6 @@ export interface Response$radar$get$http$top$locations$by$bot$class$Status$404 { }; } export interface Parameter$radar$get$http$top$locations$by$device$type { - device_type: "DESKTOP" | "MOBILE" | "OTHER"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -34324,6 +34323,7 @@ export interface Parameter$radar$get$http$top$locations$by$device$type { os?: ("WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV")[]; tlsVersion?: ("TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC")[]; format?: "JSON" | "CSV"; + device_type: "DESKTOP" | "MOBILE" | "OTHER"; } export interface Response$radar$get$http$top$locations$by$device$type$Status$200 { "application/json": { @@ -34364,7 +34364,6 @@ export interface Response$radar$get$http$top$locations$by$device$type$Status$404 }; } export interface Parameter$radar$get$http$top$locations$by$http$protocol { - http_protocol: "HTTP" | "HTTPS"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -34379,6 +34378,7 @@ export interface Parameter$radar$get$http$top$locations$by$http$protocol { os?: ("WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV")[]; tlsVersion?: ("TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC")[]; format?: "JSON" | "CSV"; + http_protocol: "HTTP" | "HTTPS"; } export interface Response$radar$get$http$top$locations$by$http$protocol$Status$200 { "application/json": { @@ -34419,7 +34419,6 @@ export interface Response$radar$get$http$top$locations$by$http$protocol$Status$4 }; } export interface Parameter$radar$get$http$top$locations$by$http$version { - http_version: "HTTPv1" | "HTTPv2" | "HTTPv3"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -34434,6 +34433,7 @@ export interface Parameter$radar$get$http$top$locations$by$http$version { os?: ("WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV")[]; tlsVersion?: ("TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC")[]; format?: "JSON" | "CSV"; + http_version: "HTTPv1" | "HTTPv2" | "HTTPv3"; } export interface Response$radar$get$http$top$locations$by$http$version$Status$200 { "application/json": { @@ -34474,7 +34474,6 @@ export interface Response$radar$get$http$top$locations$by$http$version$Status$40 }; } export interface Parameter$radar$get$http$top$locations$by$ip$version { - ip_version: "IPv4" | "IPv6"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -34489,6 +34488,7 @@ export interface Parameter$radar$get$http$top$locations$by$ip$version { os?: ("WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV")[]; tlsVersion?: ("TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC")[]; format?: "JSON" | "CSV"; + ip_version: "IPv4" | "IPv6"; } export interface Response$radar$get$http$top$locations$by$ip$version$Status$200 { "application/json": { @@ -34529,7 +34529,6 @@ export interface Response$radar$get$http$top$locations$by$ip$version$Status$404 }; } export interface Parameter$radar$get$http$top$locations$by$operating$system { - os: "WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -34544,6 +34543,7 @@ export interface Parameter$radar$get$http$top$locations$by$operating$system { ipVersion?: ("IPv4" | "IPv6")[]; tlsVersion?: ("TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC")[]; format?: "JSON" | "CSV"; + os: "WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV"; } export interface Response$radar$get$http$top$locations$by$operating$system$Status$200 { "application/json": { @@ -34584,7 +34584,6 @@ export interface Response$radar$get$http$top$locations$by$operating$system$Statu }; } export interface Parameter$radar$get$http$top$locations$by$tls$version { - tls_version: "TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC"; limit?: number; name?: string[]; dateRange?: ("1d" | "2d" | "7d" | "14d" | "28d" | "12w" | "24w" | "52w" | "1dControl" | "2dControl" | "7dControl" | "14dControl" | "28dControl" | "12wControl" | "24wControl")[]; @@ -34599,6 +34598,7 @@ export interface Parameter$radar$get$http$top$locations$by$tls$version { ipVersion?: ("IPv4" | "IPv6")[]; os?: ("WINDOWS" | "MACOSX" | "IOS" | "ANDROID" | "CHROMEOS" | "LINUX" | "SMART_TV")[]; format?: "JSON" | "CSV"; + tls_version: "TLSv1_0" | "TLSv1_1" | "TLSv1_2" | "TLSv1_3" | "TLSvQUIC"; } export interface Response$radar$get$http$top$locations$by$tls$version$Status$200 { "application/json": { @@ -35040,12 +35040,12 @@ export interface Response$radar$get$quality$speed$top$locations$Status$404 { }; } export interface Parameter$radar$get$ranking$domain$details { - domain: string; limit?: number; rankingType?: "POPULAR" | "TRENDING_RISE" | "TRENDING_STEADY"; name?: string[]; date?: (string | null)[]; format?: "JSON" | "CSV"; + domain: string; } export interface Response$radar$get$ranking$domain$details$Status$200 { "application/json": { @@ -36459,7 +36459,6 @@ export interface Response$zone$level$access$service$tokens$delete$a$service$toke "application/json": Schemas.access_api$response$common$failure; } export interface Parameter$dns$analytics$table { - identifier: Schemas.erIwb89A_identifier; metrics?: Schemas.erIwb89A_metrics; dimensions?: Schemas.erIwb89A_dimensions; since?: Schemas.erIwb89A_since; @@ -36467,6 +36466,7 @@ export interface Parameter$dns$analytics$table { limit?: Schemas.erIwb89A_limit; sort?: Schemas.erIwb89A_sort; filters?: Schemas.erIwb89A_filters; + identifier: Schemas.erIwb89A_identifier; } export interface Response$dns$analytics$table$Status$200 { "application/json": Schemas.erIwb89A_api$response$single & { @@ -36479,7 +36479,6 @@ export interface Response$dns$analytics$table$Status$4XX { }) & Schemas.erIwb89A_api$response$common$failure; } export interface Parameter$dns$analytics$by$time { - identifier: Schemas.erIwb89A_identifier; metrics?: Schemas.erIwb89A_metrics; dimensions?: Schemas.erIwb89A_dimensions; since?: Schemas.erIwb89A_since; @@ -36488,6 +36487,7 @@ export interface Parameter$dns$analytics$by$time { sort?: Schemas.erIwb89A_sort; filters?: Schemas.erIwb89A_filters; time_delta?: Schemas.erIwb89A_time_delta; + identifier: Schemas.erIwb89A_identifier; } export interface Response$dns$analytics$by$time$Status$200 { "application/json": Schemas.erIwb89A_api$response$single & { @@ -36750,8 +36750,8 @@ export interface Response$put$zones$zone_id$activation_check$Status$4XX { "application/json": Schemas.tt1FM6Ha_api$response$common$failure; } export interface Parameter$argo$analytics$for$zone$argo$analytics$for$a$zone { - zone_id: Schemas.argo$analytics_identifier; bins?: string; + zone_id: Schemas.argo$analytics_identifier; } export interface Response$argo$analytics$for$zone$argo$analytics$for$a$zone$Status$200 { "application/json": Schemas.argo$analytics_response_single; @@ -37349,7 +37349,6 @@ export interface Response$account$level$custom$nameservers$usage$for$a$zone$set$ "application/json": Schemas.dns$custom$nameservers_schemas$empty_response & Schemas.dns$custom$nameservers_api$response$common$failure; } export interface Parameter$dns$records$for$a$zone$list$dns$records { - zone_id: Schemas.dns$records_identifier; name?: Schemas.dns$records_name; type?: Schemas.dns$records_type; content?: Schemas.dns$records_content; @@ -37375,6 +37374,7 @@ export interface Parameter$dns$records$for$a$zone$list$dns$records { per_page?: Schemas.dns$records_per_page; order?: Schemas.dns$records_order; direction?: Schemas.dns$records_direction; + zone_id: Schemas.dns$records_identifier; } export interface Response$dns$records$for$a$zone$list$dns$records$Status$200 { "application/json": Schemas.dns$records_dns_response_collection; @@ -37528,13 +37528,13 @@ export interface Response$dnssec$edit$dnssec$status$Status$4XX { "application/json": Schemas.dnssec_dnssec_response_single & Schemas.dnssec_api$response$common$failure; } export interface Parameter$ip$access$rules$for$a$zone$list$ip$access$rules { - zone_id: Schemas.legacy$jhs_common_components$schemas$identifier; filters?: Schemas.legacy$jhs_schemas$filters; "egs-pagination.json"?: Schemas.legacy$jhs_egs$pagination; page?: number; per_page?: number; order?: "configuration.target" | "configuration.value" | "mode"; direction?: "asc" | "desc"; + zone_id: Schemas.legacy$jhs_common_components$schemas$identifier; } export interface Response$ip$access$rules$for$a$zone$list$ip$access$rules$Status$200 { "application/json": Schemas.legacy$jhs_rule_collection_response; @@ -37591,8 +37591,6 @@ export interface Response$ip$access$rules$for$a$zone$update$an$ip$access$rule$St "application/json": Schemas.legacy$jhs_rule_single_response & Schemas.legacy$jhs_api$response$common$failure; } export interface Parameter$waf$rule$groups$list$waf$rule$groups { - package_id: Schemas.waf$managed$rules_identifier; - zone_id: Schemas.waf$managed$rules_schemas$identifier; mode?: Schemas.waf$managed$rules_mode; page?: number; per_page?: number; @@ -37601,6 +37599,8 @@ export interface Parameter$waf$rule$groups$list$waf$rule$groups { match?: "any" | "all"; name?: string; rules_count?: number; + package_id: Schemas.waf$managed$rules_identifier; + zone_id: Schemas.waf$managed$rules_schemas$identifier; } export interface Response$waf$rule$groups$list$waf$rule$groups$Status$200 { "application/json": Schemas.waf$managed$rules_rule_group_response_collection; @@ -37636,8 +37636,6 @@ export interface Response$waf$rule$groups$update$a$waf$rule$group$Status$4XX { "application/json": Schemas.waf$managed$rules_rule_group_response_single & Schemas.waf$managed$rules_api$response$common$failure; } export interface Parameter$waf$rules$list$waf$rules { - package_id: Schemas.waf$managed$rules_identifier; - zone_id: Schemas.waf$managed$rules_schemas$identifier; mode?: "DIS" | "CHL" | "BLK" | "SIM"; group_id?: Schemas.waf$managed$rules_components$schemas$identifier; page?: number; @@ -37647,6 +37645,8 @@ export interface Parameter$waf$rules$list$waf$rules { match?: "any" | "all"; description?: string; priority?: string; + package_id: Schemas.waf$managed$rules_identifier; + zone_id: Schemas.waf$managed$rules_schemas$identifier; } export interface Response$waf$rules$list$waf$rules$Status$200 { "application/json": Schemas.waf$managed$rules_rule_response_collection; @@ -37703,8 +37703,6 @@ export interface Response$zones$0$hold$get$Status$4XX { "application/json": Schemas.zones_schemas$api$response$common$failure; } export interface Parameter$zones$0$hold$post { - /** Zone ID */ - zone_id: Schemas.zones_schemas$identifier; /** * If provided, the zone hold will extend to block any subdomain of the given zone, as well * as SSL4SaaS Custom Hostnames. For example, a zone hold on a zone with the hostname @@ -37712,6 +37710,8 @@ export interface Parameter$zones$0$hold$post { * 'staging.example.com', 'api.staging.example.com', etc. */ include_subdomains?: boolean; + /** Zone ID */ + zone_id: Schemas.zones_schemas$identifier; } export interface Response$zones$0$hold$post$Status$200 { "application/json": Schemas.zones_api$response$single & { @@ -37726,8 +37726,6 @@ export interface Response$zones$0$hold$post$Status$4XX { "application/json": Schemas.zones_schemas$api$response$common$failure; } export interface Parameter$zones$0$hold$delete { - /** Zone ID */ - zone_id: Schemas.zones_schemas$identifier; /** * If \`hold_after\` is provided, the hold will be temporarily disabled, * then automatically re-enabled by the system at the time specified @@ -37735,6 +37733,8 @@ export interface Parameter$zones$0$hold$delete { * disabled indefinitely. */ hold_after?: string; + /** Zone ID */ + zone_id: Schemas.zones_schemas$identifier; } export interface Response$zones$0$hold$delete$Status$200 { "application/json": { @@ -37994,7 +37994,6 @@ export interface Response$page$shield$update$page$shield$settings$Status$4XX { }) & Schemas.page$shield_api$response$common$failure; } export interface Parameter$page$shield$list$page$shield$connections { - zone_id: Schemas.page$shield_identifier; exclude_urls?: string; urls?: string; hosts?: string; @@ -38007,6 +38006,7 @@ export interface Parameter$page$shield$list$page$shield$connections { status?: string; page_url?: string; export?: "csv"; + zone_id: Schemas.page$shield_identifier; } export interface Response$page$shield$list$page$shield$connections$Status$200 { "application/json": Schemas.page$shield_list$zone$connections$response; @@ -38088,7 +38088,6 @@ export interface Response$page$shield$delete$a$page$shield$policy$Status$4XX { "application/json": Schemas.page$shield_get$zone$policy$response & Schemas.page$shield_api$response$common$failure; } export interface Parameter$page$shield$list$page$shield$scripts { - zone_id: Schemas.page$shield_identifier; exclude_urls?: string; urls?: string; hosts?: string; @@ -38102,6 +38101,7 @@ export interface Parameter$page$shield$list$page$shield$scripts { status?: string; page_url?: string; export?: "csv"; + zone_id: Schemas.page$shield_identifier; } export interface Response$page$shield$list$page$shield$scripts$Status$200 { "application/json": Schemas.page$shield_list$zone$scripts$response; @@ -38120,11 +38120,11 @@ export interface Response$page$shield$get$a$page$shield$script$Status$4XX { "application/json": Schemas.page$shield_get$zone$script$response & Schemas.page$shield_api$response$common$failure; } export interface Parameter$page$rules$list$page$rules { - zone_id: Schemas.zones_schemas$identifier; order?: "status" | "priority"; direction?: "asc" | "desc"; match?: "any" | "all"; status?: "active" | "disabled"; + zone_id: Schemas.zones_schemas$identifier; } export interface Response$page$rules$list$page$rules$Status$200 { "application/json": Schemas.zones_pagerule_response_collection; @@ -39800,7 +39800,6 @@ export interface Response$get$zones$zone_identifier$zaraz$export$Status$4XX { "application/json": Schemas.zaraz_api$response$common$failure; } export interface Parameter$get$zones$zone_identifier$zaraz$history { - zone_id: Schemas.zaraz_identifier; /** Ordinal number to start listing the results with. Default value is 0. */ offset?: number; /** Maximum amount of results to list. Default value is 10. */ @@ -39809,6 +39808,7 @@ export interface Parameter$get$zones$zone_identifier$zaraz$history { sortField?: "id" | "user_id" | "description" | "created_at" | "updated_at"; /** Sorting order. Default is DESC. */ sortOrder?: "DESC" | "ASC"; + zone_id: Schemas.zaraz_identifier; } export interface Response$get$zones$zone_identifier$zaraz$history$Status$200 { "application/json": Schemas.zaraz_zaraz$history$response; @@ -39830,9 +39830,9 @@ export interface Response$put$zones$zone_identifier$zaraz$history$Status$4XX { "application/json": Schemas.zaraz_api$response$common$failure; } export interface Parameter$get$zones$zone_identifier$zaraz$config$history { - zone_id: Schemas.zaraz_identifier; /** Comma separated list of Zaraz configuration IDs */ ids: number[]; + zone_id: Schemas.zaraz_identifier; } export interface Response$get$zones$zone_identifier$zaraz$config$history$Status$200 { "application/json": Schemas.zaraz_zaraz$config$history$response; @@ -39895,11 +39895,11 @@ export interface Response$speed$list$pages$Status$4XX { "application/json": Schemas.observatory_api$response$common$failure; } export interface Parameter$speed$list$test$history { - zone_id: Schemas.observatory_identifier; - url: Schemas.observatory_url; page?: number; per_page?: number; region?: Schemas.observatory_region; + zone_id: Schemas.observatory_identifier; + url: Schemas.observatory_url; } export interface Response$speed$list$test$history$Status$200 { "application/json": Schemas.observatory_page$test$response$collection; @@ -39923,9 +39923,9 @@ export interface Response$speed$create$test$Status$4XX { "application/json": Schemas.observatory_api$response$common$failure; } export interface Parameter$speed$delete$tests { + region?: Schemas.observatory_region; zone_id: Schemas.observatory_identifier; url: Schemas.observatory_url; - region?: Schemas.observatory_region; } export interface Response$speed$delete$tests$Status$200 { "application/json": Schemas.observatory_count$response; @@ -39945,8 +39945,6 @@ export interface Response$speed$get$test$Status$4XX { "application/json": Schemas.observatory_api$response$common$failure; } export interface Parameter$speed$list$page$trend { - zone_id: Schemas.observatory_identifier; - url: Schemas.observatory_url; region: Schemas.observatory_region; deviceType: Schemas.observatory_device_type; start: Schemas.observatory_timestamp; @@ -39955,6 +39953,8 @@ export interface Parameter$speed$list$page$trend { tz: string; /** A comma-separated list of metrics to include in the results. */ metrics: string; + zone_id: Schemas.observatory_identifier; + url: Schemas.observatory_url; } export interface Response$speed$list$page$trend$Status$200 { "application/json": Schemas.observatory_trend$response; @@ -39963,9 +39963,9 @@ export interface Response$speed$list$page$trend$Status$4XX { "application/json": Schemas.observatory_api$response$common$failure; } export interface Parameter$speed$get$scheduled$test { + region?: Schemas.observatory_region; zone_id: Schemas.observatory_identifier; url: Schemas.observatory_url; - region?: Schemas.observatory_region; } export interface Response$speed$get$scheduled$test$Status$200 { "application/json": Schemas.observatory_schedule$response$single; @@ -39974,9 +39974,9 @@ export interface Response$speed$get$scheduled$test$Status$4XX { "application/json": Schemas.observatory_api$response$common$failure; } export interface Parameter$speed$create$scheduled$test { + region?: Schemas.observatory_region; zone_id: Schemas.observatory_identifier; url: Schemas.observatory_url; - region?: Schemas.observatory_region; } export interface Response$speed$create$scheduled$test$Status$200 { "application/json": Schemas.observatory_create$schedule$response; @@ -39985,9 +39985,9 @@ export interface Response$speed$create$scheduled$test$Status$4XX { "application/json": Schemas.observatory_api$response$common$failure; } export interface Parameter$speed$delete$test$schedule { + region?: Schemas.observatory_region; zone_id: Schemas.observatory_identifier; url: Schemas.observatory_url; - region?: Schemas.observatory_region; } export interface Response$speed$delete$test$schedule$Status$200 { "application/json": Schemas.observatory_count$response; @@ -40180,10 +40180,10 @@ export interface Response$total$tls$enable$or$disable$total$tls$Status$4XX { "application/json": Schemas.ApQU2qAj_total_tls_settings_response & Schemas.ApQU2qAj_api$response$common$failure; } export interface Parameter$zone$analytics$$$deprecated$$get$analytics$by$co$locations { - zone_identifier: Schemas.dFBpZBFx_identifier; until?: Schemas.dFBpZBFx_until; since?: string | number; continuous?: boolean; + zone_identifier: Schemas.dFBpZBFx_identifier; } export interface Response$zone$analytics$$$deprecated$$get$analytics$by$co$locations$Status$200 { "application/json": Schemas.dFBpZBFx_colo_response; @@ -40192,10 +40192,10 @@ export interface Response$zone$analytics$$$deprecated$$get$analytics$by$co$locat "application/json": Schemas.dFBpZBFx_colo_response & Schemas.dFBpZBFx_api$response$common$failure; } export interface Parameter$zone$analytics$$$deprecated$$get$dashboard { - zone_identifier: Schemas.dFBpZBFx_identifier; until?: Schemas.dFBpZBFx_until; since?: string | number; continuous?: boolean; + zone_identifier: Schemas.dFBpZBFx_identifier; } export interface Response$zone$analytics$$$deprecated$$get$dashboard$Status$200 { "application/json": Schemas.dFBpZBFx_dashboard_response; @@ -40240,8 +40240,8 @@ export interface Response$zone$rate$plan$list$available$rate$plans$Status$4XX { "application/json": Schemas.bill$subs$api_plan_response_collection & Schemas.bill$subs$api_api$response$common$failure; } export interface Parameter$client$certificate$for$a$zone$list$hostname$associations { - zone_identifier: Schemas.ApQU2qAj_identifier; mtls_certificate_id?: string; + zone_identifier: Schemas.ApQU2qAj_identifier; } export interface Response$client$certificate$for$a$zone$list$hostname$associations$Status$200 { "application/json": Schemas.ApQU2qAj_hostname_associations_response; @@ -40262,12 +40262,12 @@ export interface Response$client$certificate$for$a$zone$put$hostname$association "application/json": Schemas.ApQU2qAj_api$response$common$failure; } export interface Parameter$client$certificate$for$a$zone$list$client$certificates { - zone_identifier: Schemas.ApQU2qAj_identifier; status?: "all" | "active" | "pending_reactivation" | "pending_revocation" | "revoked"; page?: number; per_page?: number; limit?: number; offset?: number; + zone_identifier: Schemas.ApQU2qAj_identifier; } export interface Response$client$certificate$for$a$zone$list$client$certificates$Status$200 { "application/json": Schemas.ApQU2qAj_client_certificate_response_collection; @@ -40321,11 +40321,11 @@ export interface Response$client$certificate$for$a$zone$edit$client$certificate$ "application/json": Schemas.ApQU2qAj_api$response$common$failure; } export interface Parameter$custom$ssl$for$a$zone$list$ssl$configurations { - zone_identifier: Schemas.ApQU2qAj_identifier; page?: number; per_page?: number; match?: "any" | "all"; status?: "active" | "expired" | "deleted" | "pending" | "initializing"; + zone_identifier: Schemas.ApQU2qAj_identifier; } export interface Response$custom$ssl$for$a$zone$list$ssl$configurations$Status$200 { "application/json": Schemas.ApQU2qAj_certificate_response_collection; @@ -40410,7 +40410,6 @@ export interface Response$custom$ssl$for$a$zone$re$prioritize$ssl$certificates$S "application/json": Schemas.ApQU2qAj_certificate_response_collection & Schemas.ApQU2qAj_api$response$common$failure; } export interface Parameter$custom$hostname$for$a$zone$list$custom$hostnames { - zone_identifier: Schemas.ApQU2qAj_identifier; hostname?: string; id?: string; page?: number; @@ -40418,6 +40417,7 @@ export interface Parameter$custom$hostname$for$a$zone$list$custom$hostnames { order?: "ssl" | "ssl_status"; direction?: "asc" | "desc"; ssl?: string; + zone_identifier: Schemas.ApQU2qAj_identifier; } export interface Response$custom$hostname$for$a$zone$list$custom$hostnames$Status$200 { "application/json": Schemas.ApQU2qAj_custom_hostname_response_collection; @@ -40584,10 +40584,10 @@ export interface Response$email$routing$settings$enable$email$routing$Status$200 "application/json": Schemas.email_email_settings_response_single; } export interface Parameter$email$routing$routing$rules$list$routing$rules { - zone_identifier: Schemas.email_identifier; page?: number; per_page?: number; enabled?: true | false; + zone_identifier: Schemas.email_identifier; } export interface Response$email$routing$routing$rules$list$routing$rules$Status$200 { "application/json": Schemas.email_rules_response_collection; @@ -40641,7 +40641,6 @@ export interface Response$email$routing$routing$rules$update$catch$all$rule$Stat "application/json": Schemas.email_catch_all_rule_response_single; } export interface Parameter$filters$list$filters { - zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; paused?: Schemas.legacy$jhs_filters_components$schemas$paused; expression?: string; description?: string; @@ -40649,6 +40648,7 @@ export interface Parameter$filters$list$filters { page?: number; per_page?: number; id?: string; + zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; } export interface Response$filters$list$filters$Status$200 { "application/json": Schemas.legacy$jhs_schemas$filter$response$collection; @@ -40734,7 +40734,6 @@ export interface Response$filters$delete$a$filter$Status$4xx { "application/json": Schemas.legacy$jhs_filter$delete$response$single & Schemas.legacy$jhs_api$response$common$failure; } export interface Parameter$zone$lockdown$list$zone$lockdown$rules { - zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; page?: number; description?: Schemas.legacy$jhs_schemas$description_search; modified_on?: Schemas.legacy$jhs_components$schemas$modified_on; @@ -40746,6 +40745,7 @@ export interface Parameter$zone$lockdown$list$zone$lockdown$rules { created_on?: Date; description_search?: string; ip_search?: string; + zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; } export interface Response$zone$lockdown$list$zone$lockdown$rules$Status$200 { "application/json": Schemas.legacy$jhs_zonelockdown_response_collection; @@ -40813,13 +40813,13 @@ export interface Response$zone$lockdown$delete$a$zone$lockdown$rule$Status$4xx { } & Schemas.legacy$jhs_api$response$common$failure; } export interface Parameter$firewall$rules$list$firewall$rules { - zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; description?: string; action?: string; page?: number; per_page?: number; id?: string; paused?: boolean; + zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; } export interface Response$firewall$rules$list$firewall$rules$Status$200 { "application/json": Schemas.legacy$jhs_filter$rules$response$collection; @@ -40885,7 +40885,7 @@ export interface Response$firewall$rules$update$priority$of$firewall$rules$Statu "application/json": Schemas.legacy$jhs_filter$rules$response$collection & Schemas.legacy$jhs_api$response$common$failure; } export interface Parameter$firewall$rules$get$a$firewall$rule { - id?: Schemas.legacy$jhs_firewall$rules_components$schemas$id; + id: Schemas.legacy$jhs_firewall$rules_components$schemas$id; zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; } export interface Response$firewall$rules$get$a$firewall$rule$Status$200 { @@ -40942,12 +40942,12 @@ export interface Response$firewall$rules$update$priority$of$a$firewall$rule$Stat "application/json": Schemas.legacy$jhs_filter$rules$response$collection & Schemas.legacy$jhs_api$response$common$failure; } export interface Parameter$user$agent$blocking$rules$list$user$agent$blocking$rules { - zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; page?: number; description?: Schemas.legacy$jhs_description_search; description_search?: Schemas.legacy$jhs_description_search; per_page?: number; ua_search?: string; + zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; } export interface Response$user$agent$blocking$rules$list$user$agent$blocking$rules$Status$200 { "application/json": Schemas.legacy$jhs_firewalluablock_response_collection; @@ -41016,9 +41016,9 @@ export interface Response$user$agent$blocking$rules$delete$a$user$agent$blocking }) & Schemas.legacy$jhs_api$response$common$failure; } export interface Parameter$waf$overrides$list$waf$overrides { - zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; page?: number; per_page?: number; + zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; } export interface Response$waf$overrides$list$waf$overrides$Status$200 { "application/json": Schemas.legacy$jhs_override_response_collection; @@ -41087,13 +41087,13 @@ export interface Response$waf$overrides$delete$a$waf$override$Status$4xx { } & Schemas.legacy$jhs_api$response$common$failure; } export interface Parameter$waf$packages$list$waf$packages { - zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; page?: number; per_page?: number; order?: "name"; direction?: "asc" | "desc"; match?: "any" | "all"; name?: string; + zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; } export interface Response$waf$packages$list$waf$packages$Status$200 { "application/json": Schemas.legacy$jhs_package_response_collection; @@ -41358,10 +41358,10 @@ export interface Response$logs$received$update$log$retention$flag$Status$4XX { "application/json": Schemas.dFBpZBFx_flag_response & Schemas.dFBpZBFx_api$response$common$failure; } export interface Parameter$logs$received$get$logs$ray$i$ds { - ray_identifier: Schemas.dFBpZBFx_ray_identifier; - zone_identifier: Schemas.dFBpZBFx_identifier; timestamps?: Schemas.dFBpZBFx_timestamps; fields?: string; + ray_identifier: Schemas.dFBpZBFx_ray_identifier; + zone_identifier: Schemas.dFBpZBFx_identifier; } export interface Response$logs$received$get$logs$ray$i$ds$Status$200 { "application/json": Schemas.dFBpZBFx_logs; @@ -41370,13 +41370,13 @@ export interface Response$logs$received$get$logs$ray$i$ds$Status$4XX { "application/json": Schemas.dFBpZBFx_logs & Schemas.dFBpZBFx_api$response$common$failure; } export interface Parameter$logs$received$get$logs$received { - zone_identifier: Schemas.dFBpZBFx_identifier; end: Schemas.dFBpZBFx_end; sample?: Schemas.dFBpZBFx_sample; timestamps?: Schemas.dFBpZBFx_timestamps; count?: number; fields?: string; start?: string | number; + zone_identifier: Schemas.dFBpZBFx_identifier; } export interface Response$logs$received$get$logs$received$Status$200 { "application/json": Schemas.dFBpZBFx_logs; @@ -41529,9 +41529,9 @@ export interface Response$zone$level$authenticated$origin$pulls$set$enablement$f "application/json": Schemas.ApQU2qAj_enabled_response & Schemas.ApQU2qAj_api$response$common$failure; } export interface Parameter$rate$limits$for$a$zone$list$rate$limits { - zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; page?: number; per_page?: number; + zone_identifier: Schemas.legacy$jhs_common_components$schemas$identifier; } export interface Response$rate$limits$for$a$zone$list$rate$limits$Status$200 { "application/json": Schemas.legacy$jhs_ratelimit_response_collection; @@ -41850,8 +41850,8 @@ export interface Response$zone$snippets$snippet$rules$put$Status$5XX { "application/json": Schemas.ajfne3Yc_api$response$common$failure; } export interface Parameter$certificate$packs$list$certificate$packs { - zone_identifier: Schemas.ApQU2qAj_identifier; status?: "all"; + zone_identifier: Schemas.ApQU2qAj_identifier; } export interface Response$certificate$packs$list$certificate$packs$Status$200 { "application/json": Schemas.ApQU2qAj_certificate_pack_response_collection; @@ -41960,8 +41960,8 @@ export interface Response$universal$ssl$settings$for$a$zone$edit$universal$ssl$s "application/json": Schemas.ApQU2qAj_ssl_universal_settings_response & Schemas.ApQU2qAj_api$response$common$failure; } export interface Parameter$ssl$verification$ssl$verification$details { - zone_identifier: Schemas.ApQU2qAj_identifier; retry?: string; + zone_identifier: Schemas.ApQU2qAj_identifier; } export interface Response$ssl$verification$ssl$verification$details$Status$200 { "application/json": Schemas.ApQU2qAj_ssl_verification_response_collection; @@ -42386,10 +42386,10 @@ export interface Response$web3$hostname$delete$ipfs$universal$path$gateway$conte "application/json": Schemas.YSGOQLq3_api$response$single$id & Schemas.YSGOQLq3_api$response$common$failure; } export interface Parameter$spectrum$aggregate$analytics$get$current$aggregated$analytics { - zone: Schemas.legacy$jhs_common_components$schemas$identifier; appID?: Schemas.legacy$jhs_app_id_param; app_id_param?: Schemas.legacy$jhs_app_id_param; colo_name?: string; + zone: Schemas.legacy$jhs_common_components$schemas$identifier; } export interface Response$spectrum$aggregate$analytics$get$current$aggregated$analytics$Status$200 { "application/json": Schemas.legacy$jhs_analytics$aggregate_components$schemas$response_collection; @@ -42398,7 +42398,6 @@ export interface Response$spectrum$aggregate$analytics$get$current$aggregated$an "application/json": Schemas.legacy$jhs_analytics$aggregate_components$schemas$response_collection & Schemas.legacy$jhs_api$response$common$failure; } export interface Parameter$spectrum$analytics$$$by$time$$get$analytics$by$time { - zone: Schemas.legacy$jhs_common_components$schemas$identifier; dimensions?: Schemas.legacy$jhs_dimensions; sort?: Schemas.legacy$jhs_sort; until?: Schemas.legacy$jhs_schemas$until; @@ -42406,6 +42405,7 @@ export interface Parameter$spectrum$analytics$$$by$time$$get$analytics$by$time { filters?: string; since?: Date; time_delta?: "year" | "quarter" | "month" | "week" | "day" | "hour" | "dekaminute" | "minute"; + zone: Schemas.legacy$jhs_common_components$schemas$identifier; } export interface Response$spectrum$analytics$$$by$time$$get$analytics$by$time$Status$200 { "application/json": Schemas.legacy$jhs_api$response$single; @@ -42414,13 +42414,13 @@ export interface Response$spectrum$analytics$$$by$time$$get$analytics$by$time$St "application/json": Schemas.legacy$jhs_api$response$single & Schemas.legacy$jhs_api$response$common$failure; } export interface Parameter$spectrum$analytics$$$summary$$get$analytics$summary { - zone: Schemas.legacy$jhs_common_components$schemas$identifier; dimensions?: Schemas.legacy$jhs_dimensions; sort?: Schemas.legacy$jhs_sort; until?: Schemas.legacy$jhs_schemas$until; metrics?: ("count" | "bytesIngress" | "bytesEgress" | "durationAvg" | "durationMedian" | "duration90th" | "duration99th")[]; filters?: string; since?: Date; + zone: Schemas.legacy$jhs_common_components$schemas$identifier; } export interface Response$spectrum$analytics$$$summary$$get$analytics$summary$Status$200 { "application/json": Schemas.legacy$jhs_api$response$single; @@ -42429,11 +42429,11 @@ export interface Response$spectrum$analytics$$$summary$$get$analytics$summary$St "application/json": Schemas.legacy$jhs_api$response$single & Schemas.legacy$jhs_api$response$common$failure; } export interface Parameter$spectrum$applications$list$spectrum$applications { - zone: Schemas.legacy$jhs_common_components$schemas$identifier; page?: number; per_page?: number; direction?: "asc" | "desc"; order?: "protocol" | "app_id" | "created_on" | "modified_on" | "dns"; + zone: Schemas.legacy$jhs_common_components$schemas$identifier; } export interface Response$spectrum$applications$list$spectrum$applications$Status$200 { "application/json": Schemas.legacy$jhs_components$schemas$response_collection; diff --git a/test/__tests__/functional/__snapshots__/kubernetes-test.ts.snap b/test/__tests__/functional/__snapshots__/kubernetes-test.ts.snap index 21d0dda..5458723 100644 --- a/test/__tests__/functional/__snapshots__/kubernetes-test.ts.snap +++ b/test/__tests__/functional/__snapshots__/kubernetes-test.ts.snap @@ -7144,10 +7144,10 @@ export interface Response$listCoreV1ComponentStatus$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$ComponentStatusList; } export interface Parameter$readCoreV1ComponentStatus { - /** name of the ComponentStatus */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** name of the ComponentStatus */ + name: string; } export interface Response$readCoreV1ComponentStatus$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$ComponentStatus; @@ -7358,10 +7358,10 @@ export interface Parameter$createCoreV1NamespacedBinding { dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createCoreV1NamespacedBinding = RequestBodies.io$k8s$api$core$v1$Binding.Content; export interface Response$createCoreV1NamespacedBinding$Status$200 { @@ -7380,8 +7380,6 @@ export interface Response$createCoreV1NamespacedBinding$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Binding; } export interface Parameter$listCoreV1NamespacedConfigMap { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -7408,6 +7406,8 @@ export interface Parameter$listCoreV1NamespacedConfigMap { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listCoreV1NamespacedConfigMap$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$ConfigMapList; @@ -7417,14 +7417,14 @@ export interface Response$listCoreV1NamespacedConfigMap$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$ConfigMapList; } export interface Parameter$createCoreV1NamespacedConfigMap { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createCoreV1NamespacedConfigMap = RequestBodies.io$k8s$api$core$v1$ConfigMap.Content; export interface Response$createCoreV1NamespacedConfigMap$Status$200 { @@ -7443,8 +7443,6 @@ export interface Response$createCoreV1NamespacedConfigMap$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ConfigMap; } export interface Parameter$deleteCoreV1CollectionNamespacedConfigMap { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -7479,6 +7477,8 @@ export interface Parameter$deleteCoreV1CollectionNamespacedConfigMap { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1CollectionNamespacedConfigMap = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1CollectionNamespacedConfigMap$Status$200 { @@ -7487,16 +7487,16 @@ export interface Response$deleteCoreV1CollectionNamespacedConfigMap$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readCoreV1NamespacedConfigMap { - /** name of the ConfigMap */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the ConfigMap */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readCoreV1NamespacedConfigMap$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$ConfigMap; @@ -7504,16 +7504,16 @@ export interface Response$readCoreV1NamespacedConfigMap$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ConfigMap; } export interface Parameter$replaceCoreV1NamespacedConfigMap { - /** name of the ConfigMap */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the ConfigMap */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceCoreV1NamespacedConfigMap = RequestBodies.io$k8s$api$core$v1$ConfigMap.Content; export interface Response$replaceCoreV1NamespacedConfigMap$Status$200 { @@ -7527,10 +7527,6 @@ export interface Response$replaceCoreV1NamespacedConfigMap$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ConfigMap; } export interface Parameter$deleteCoreV1NamespacedConfigMap { - /** name of the ConfigMap */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -7541,6 +7537,10 @@ export interface Parameter$deleteCoreV1NamespacedConfigMap { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the ConfigMap */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1NamespacedConfigMap = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1NamespacedConfigMap$Status$200 { @@ -7554,10 +7554,6 @@ export interface Response$deleteCoreV1NamespacedConfigMap$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchCoreV1NamespacedConfigMap { - /** name of the ConfigMap */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -7566,6 +7562,10 @@ export interface Parameter$patchCoreV1NamespacedConfigMap { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the ConfigMap */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchCoreV1NamespacedConfigMap = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedConfigMap$Status$200 { @@ -7574,8 +7574,6 @@ export interface Response$patchCoreV1NamespacedConfigMap$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ConfigMap; } export interface Parameter$listCoreV1NamespacedEndpoints { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -7602,6 +7600,8 @@ export interface Parameter$listCoreV1NamespacedEndpoints { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listCoreV1NamespacedEndpoints$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$EndpointsList; @@ -7611,14 +7611,14 @@ export interface Response$listCoreV1NamespacedEndpoints$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$EndpointsList; } export interface Parameter$createCoreV1NamespacedEndpoints { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createCoreV1NamespacedEndpoints = RequestBodies.io$k8s$api$core$v1$Endpoints.Content; export interface Response$createCoreV1NamespacedEndpoints$Status$200 { @@ -7637,8 +7637,6 @@ export interface Response$createCoreV1NamespacedEndpoints$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Endpoints; } export interface Parameter$deleteCoreV1CollectionNamespacedEndpoints { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -7673,6 +7671,8 @@ export interface Parameter$deleteCoreV1CollectionNamespacedEndpoints { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1CollectionNamespacedEndpoints = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1CollectionNamespacedEndpoints$Status$200 { @@ -7681,16 +7681,16 @@ export interface Response$deleteCoreV1CollectionNamespacedEndpoints$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readCoreV1NamespacedEndpoints { - /** name of the Endpoints */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the Endpoints */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readCoreV1NamespacedEndpoints$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$Endpoints; @@ -7698,16 +7698,16 @@ export interface Response$readCoreV1NamespacedEndpoints$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Endpoints; } export interface Parameter$replaceCoreV1NamespacedEndpoints { - /** name of the Endpoints */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Endpoints */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceCoreV1NamespacedEndpoints = RequestBodies.io$k8s$api$core$v1$Endpoints.Content; export interface Response$replaceCoreV1NamespacedEndpoints$Status$200 { @@ -7721,10 +7721,6 @@ export interface Response$replaceCoreV1NamespacedEndpoints$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Endpoints; } export interface Parameter$deleteCoreV1NamespacedEndpoints { - /** name of the Endpoints */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -7735,6 +7731,10 @@ export interface Parameter$deleteCoreV1NamespacedEndpoints { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the Endpoints */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1NamespacedEndpoints = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1NamespacedEndpoints$Status$200 { @@ -7748,10 +7748,6 @@ export interface Response$deleteCoreV1NamespacedEndpoints$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchCoreV1NamespacedEndpoints { - /** name of the Endpoints */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -7760,6 +7756,10 @@ export interface Parameter$patchCoreV1NamespacedEndpoints { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Endpoints */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchCoreV1NamespacedEndpoints = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedEndpoints$Status$200 { @@ -7768,8 +7768,6 @@ export interface Response$patchCoreV1NamespacedEndpoints$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Endpoints; } export interface Parameter$listCoreV1NamespacedEvent { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -7796,6 +7794,8 @@ export interface Parameter$listCoreV1NamespacedEvent { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listCoreV1NamespacedEvent$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$EventList; @@ -7805,14 +7805,14 @@ export interface Response$listCoreV1NamespacedEvent$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$EventList; } export interface Parameter$createCoreV1NamespacedEvent { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createCoreV1NamespacedEvent = RequestBodies.io$k8s$api$core$v1$Event.Content; export interface Response$createCoreV1NamespacedEvent$Status$200 { @@ -7831,8 +7831,6 @@ export interface Response$createCoreV1NamespacedEvent$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Event; } export interface Parameter$deleteCoreV1CollectionNamespacedEvent { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -7867,6 +7865,8 @@ export interface Parameter$deleteCoreV1CollectionNamespacedEvent { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1CollectionNamespacedEvent = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1CollectionNamespacedEvent$Status$200 { @@ -7875,16 +7875,16 @@ export interface Response$deleteCoreV1CollectionNamespacedEvent$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readCoreV1NamespacedEvent { - /** name of the Event */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the Event */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readCoreV1NamespacedEvent$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$Event; @@ -7892,16 +7892,16 @@ export interface Response$readCoreV1NamespacedEvent$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Event; } export interface Parameter$replaceCoreV1NamespacedEvent { - /** name of the Event */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Event */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceCoreV1NamespacedEvent = RequestBodies.io$k8s$api$core$v1$Event.Content; export interface Response$replaceCoreV1NamespacedEvent$Status$200 { @@ -7915,10 +7915,6 @@ export interface Response$replaceCoreV1NamespacedEvent$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Event; } export interface Parameter$deleteCoreV1NamespacedEvent { - /** name of the Event */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -7929,6 +7925,10 @@ export interface Parameter$deleteCoreV1NamespacedEvent { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the Event */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1NamespacedEvent = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1NamespacedEvent$Status$200 { @@ -7942,10 +7942,6 @@ export interface Response$deleteCoreV1NamespacedEvent$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchCoreV1NamespacedEvent { - /** name of the Event */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -7954,6 +7950,10 @@ export interface Parameter$patchCoreV1NamespacedEvent { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Event */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchCoreV1NamespacedEvent = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedEvent$Status$200 { @@ -7962,8 +7962,6 @@ export interface Response$patchCoreV1NamespacedEvent$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Event; } export interface Parameter$listCoreV1NamespacedLimitRange { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -7990,6 +7988,8 @@ export interface Parameter$listCoreV1NamespacedLimitRange { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listCoreV1NamespacedLimitRange$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$LimitRangeList; @@ -7999,14 +7999,14 @@ export interface Response$listCoreV1NamespacedLimitRange$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$LimitRangeList; } export interface Parameter$createCoreV1NamespacedLimitRange { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createCoreV1NamespacedLimitRange = RequestBodies.io$k8s$api$core$v1$LimitRange.Content; export interface Response$createCoreV1NamespacedLimitRange$Status$200 { @@ -8025,8 +8025,6 @@ export interface Response$createCoreV1NamespacedLimitRange$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$LimitRange; } export interface Parameter$deleteCoreV1CollectionNamespacedLimitRange { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -8061,6 +8059,8 @@ export interface Parameter$deleteCoreV1CollectionNamespacedLimitRange { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1CollectionNamespacedLimitRange = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1CollectionNamespacedLimitRange$Status$200 { @@ -8069,16 +8069,16 @@ export interface Response$deleteCoreV1CollectionNamespacedLimitRange$Status$200 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readCoreV1NamespacedLimitRange { - /** name of the LimitRange */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the LimitRange */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readCoreV1NamespacedLimitRange$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$LimitRange; @@ -8086,16 +8086,16 @@ export interface Response$readCoreV1NamespacedLimitRange$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$LimitRange; } export interface Parameter$replaceCoreV1NamespacedLimitRange { - /** name of the LimitRange */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the LimitRange */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceCoreV1NamespacedLimitRange = RequestBodies.io$k8s$api$core$v1$LimitRange.Content; export interface Response$replaceCoreV1NamespacedLimitRange$Status$200 { @@ -8109,10 +8109,6 @@ export interface Response$replaceCoreV1NamespacedLimitRange$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$LimitRange; } export interface Parameter$deleteCoreV1NamespacedLimitRange { - /** name of the LimitRange */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -8123,6 +8119,10 @@ export interface Parameter$deleteCoreV1NamespacedLimitRange { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the LimitRange */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1NamespacedLimitRange = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1NamespacedLimitRange$Status$200 { @@ -8136,10 +8136,6 @@ export interface Response$deleteCoreV1NamespacedLimitRange$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchCoreV1NamespacedLimitRange { - /** name of the LimitRange */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -8148,6 +8144,10 @@ export interface Parameter$patchCoreV1NamespacedLimitRange { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the LimitRange */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchCoreV1NamespacedLimitRange = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedLimitRange$Status$200 { @@ -8156,8 +8156,6 @@ export interface Response$patchCoreV1NamespacedLimitRange$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$LimitRange; } export interface Parameter$listCoreV1NamespacedPersistentVolumeClaim { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -8184,6 +8182,8 @@ export interface Parameter$listCoreV1NamespacedPersistentVolumeClaim { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listCoreV1NamespacedPersistentVolumeClaim$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$PersistentVolumeClaimList; @@ -8193,14 +8193,14 @@ export interface Response$listCoreV1NamespacedPersistentVolumeClaim$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$PersistentVolumeClaimList; } export interface Parameter$createCoreV1NamespacedPersistentVolumeClaim { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createCoreV1NamespacedPersistentVolumeClaim = RequestBodies.io$k8s$api$core$v1$PersistentVolumeClaim.Content; export interface Response$createCoreV1NamespacedPersistentVolumeClaim$Status$200 { @@ -8219,8 +8219,6 @@ export interface Response$createCoreV1NamespacedPersistentVolumeClaim$Status$202 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; } export interface Parameter$deleteCoreV1CollectionNamespacedPersistentVolumeClaim { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -8255,6 +8253,8 @@ export interface Parameter$deleteCoreV1CollectionNamespacedPersistentVolumeClaim timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1CollectionNamespacedPersistentVolumeClaim = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1CollectionNamespacedPersistentVolumeClaim$Status$200 { @@ -8263,16 +8263,16 @@ export interface Response$deleteCoreV1CollectionNamespacedPersistentVolumeClaim$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readCoreV1NamespacedPersistentVolumeClaim { - /** name of the PersistentVolumeClaim */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the PersistentVolumeClaim */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readCoreV1NamespacedPersistentVolumeClaim$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; @@ -8280,16 +8280,16 @@ export interface Response$readCoreV1NamespacedPersistentVolumeClaim$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; } export interface Parameter$replaceCoreV1NamespacedPersistentVolumeClaim { - /** name of the PersistentVolumeClaim */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the PersistentVolumeClaim */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceCoreV1NamespacedPersistentVolumeClaim = RequestBodies.io$k8s$api$core$v1$PersistentVolumeClaim.Content; export interface Response$replaceCoreV1NamespacedPersistentVolumeClaim$Status$200 { @@ -8303,10 +8303,6 @@ export interface Response$replaceCoreV1NamespacedPersistentVolumeClaim$Status$20 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; } export interface Parameter$deleteCoreV1NamespacedPersistentVolumeClaim { - /** name of the PersistentVolumeClaim */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -8317,6 +8313,10 @@ export interface Parameter$deleteCoreV1NamespacedPersistentVolumeClaim { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the PersistentVolumeClaim */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1NamespacedPersistentVolumeClaim = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1NamespacedPersistentVolumeClaim$Status$200 { @@ -8330,10 +8330,6 @@ export interface Response$deleteCoreV1NamespacedPersistentVolumeClaim$Status$202 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; } export interface Parameter$patchCoreV1NamespacedPersistentVolumeClaim { - /** name of the PersistentVolumeClaim */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -8342,6 +8338,10 @@ export interface Parameter$patchCoreV1NamespacedPersistentVolumeClaim { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the PersistentVolumeClaim */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchCoreV1NamespacedPersistentVolumeClaim = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedPersistentVolumeClaim$Status$200 { @@ -8350,12 +8350,12 @@ export interface Response$patchCoreV1NamespacedPersistentVolumeClaim$Status$200 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; } export interface Parameter$readCoreV1NamespacedPersistentVolumeClaimStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the PersistentVolumeClaim */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readCoreV1NamespacedPersistentVolumeClaimStatus$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; @@ -8363,16 +8363,16 @@ export interface Response$readCoreV1NamespacedPersistentVolumeClaimStatus$Status "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; } export interface Parameter$replaceCoreV1NamespacedPersistentVolumeClaimStatus { - /** name of the PersistentVolumeClaim */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the PersistentVolumeClaim */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceCoreV1NamespacedPersistentVolumeClaimStatus = RequestBodies.io$k8s$api$core$v1$PersistentVolumeClaim.Content; export interface Response$replaceCoreV1NamespacedPersistentVolumeClaimStatus$Status$200 { @@ -8386,10 +8386,6 @@ export interface Response$replaceCoreV1NamespacedPersistentVolumeClaimStatus$Sta "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; } export interface Parameter$patchCoreV1NamespacedPersistentVolumeClaimStatus { - /** name of the PersistentVolumeClaim */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -8398,6 +8394,10 @@ export interface Parameter$patchCoreV1NamespacedPersistentVolumeClaimStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the PersistentVolumeClaim */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchCoreV1NamespacedPersistentVolumeClaimStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedPersistentVolumeClaimStatus$Status$200 { @@ -8406,8 +8406,6 @@ export interface Response$patchCoreV1NamespacedPersistentVolumeClaimStatus$Statu "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; } export interface Parameter$listCoreV1NamespacedPod { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -8434,6 +8432,8 @@ export interface Parameter$listCoreV1NamespacedPod { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listCoreV1NamespacedPod$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$PodList; @@ -8443,14 +8443,14 @@ export interface Response$listCoreV1NamespacedPod$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$PodList; } export interface Parameter$createCoreV1NamespacedPod { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createCoreV1NamespacedPod = RequestBodies.io$k8s$api$core$v1$Pod.Content; export interface Response$createCoreV1NamespacedPod$Status$200 { @@ -8469,8 +8469,6 @@ export interface Response$createCoreV1NamespacedPod$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Pod; } export interface Parameter$deleteCoreV1CollectionNamespacedPod { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -8505,6 +8503,8 @@ export interface Parameter$deleteCoreV1CollectionNamespacedPod { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1CollectionNamespacedPod = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1CollectionNamespacedPod$Status$200 { @@ -8513,16 +8513,16 @@ export interface Response$deleteCoreV1CollectionNamespacedPod$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readCoreV1NamespacedPod { - /** name of the Pod */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the Pod */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readCoreV1NamespacedPod$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$Pod; @@ -8530,16 +8530,16 @@ export interface Response$readCoreV1NamespacedPod$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Pod; } export interface Parameter$replaceCoreV1NamespacedPod { - /** name of the Pod */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Pod */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceCoreV1NamespacedPod = RequestBodies.io$k8s$api$core$v1$Pod.Content; export interface Response$replaceCoreV1NamespacedPod$Status$200 { @@ -8553,10 +8553,6 @@ export interface Response$replaceCoreV1NamespacedPod$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Pod; } export interface Parameter$deleteCoreV1NamespacedPod { - /** name of the Pod */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -8567,6 +8563,10 @@ export interface Parameter$deleteCoreV1NamespacedPod { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the Pod */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1NamespacedPod = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1NamespacedPod$Status$200 { @@ -8580,10 +8580,6 @@ export interface Response$deleteCoreV1NamespacedPod$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Pod; } export interface Parameter$patchCoreV1NamespacedPod { - /** name of the Pod */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -8592,6 +8588,10 @@ export interface Parameter$patchCoreV1NamespacedPod { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Pod */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchCoreV1NamespacedPod = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedPod$Status$200 { @@ -8602,10 +8602,6 @@ export interface Response$patchCoreV1NamespacedPod$Status$200 { export interface Parameter$connectCoreV1GetNamespacedPodAttach { /** The container in which to execute the command. Defaults to only container if there is only one container in the pod. */ container?: string; - /** name of the PodAttachOptions */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** Stderr if true indicates that stderr is to be redirected for the attach call. Defaults to true. */ stderr?: boolean; /** Stdin if true, redirects the standard input stream of the pod for this call. Defaults to false. */ @@ -8614,6 +8610,10 @@ export interface Parameter$connectCoreV1GetNamespacedPodAttach { stdout?: boolean; /** TTY if true indicates that a tty will be allocated for the attach call. This is passed through the container runtime so the tty is allocated on the worker node by the container runtime. Defaults to false. */ tty?: boolean; + /** name of the PodAttachOptions */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$connectCoreV1GetNamespacedPodAttach$Status$200 { "*/*": string; @@ -8621,10 +8621,6 @@ export interface Response$connectCoreV1GetNamespacedPodAttach$Status$200 { export interface Parameter$connectCoreV1PostNamespacedPodAttach { /** The container in which to execute the command. Defaults to only container if there is only one container in the pod. */ container?: string; - /** name of the PodAttachOptions */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** Stderr if true indicates that stderr is to be redirected for the attach call. Defaults to true. */ stderr?: boolean; /** Stdin if true, redirects the standard input stream of the pod for this call. Defaults to false. */ @@ -8633,6 +8629,10 @@ export interface Parameter$connectCoreV1PostNamespacedPodAttach { stdout?: boolean; /** TTY if true indicates that a tty will be allocated for the attach call. This is passed through the container runtime so the tty is allocated on the worker node by the container runtime. Defaults to false. */ tty?: boolean; + /** name of the PodAttachOptions */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$connectCoreV1PostNamespacedPodAttach$Status$200 { "*/*": string; @@ -8642,12 +8642,12 @@ export interface Parameter$createCoreV1NamespacedPodBinding { dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the Binding */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export type RequestBody$createCoreV1NamespacedPodBinding = RequestBodies.io$k8s$api$core$v1$Binding.Content; export interface Response$createCoreV1NamespacedPodBinding$Status$200 { @@ -8670,12 +8670,12 @@ export interface Parameter$createCoreV1NamespacedPodEviction { dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the Eviction */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface RequestBody$createCoreV1NamespacedPodEviction { "*/*": Schemas.io$k8s$api$policy$v1beta1$Eviction; @@ -8700,10 +8700,6 @@ export interface Parameter$connectCoreV1GetNamespacedPodExec { command?: string; /** Container in which to execute the command. Defaults to only container if there is only one container in the pod. */ container?: string; - /** name of the PodExecOptions */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** Redirect the standard error stream of the pod for this call. Defaults to true. */ stderr?: boolean; /** Redirect the standard input stream of the pod for this call. Defaults to false. */ @@ -8712,6 +8708,10 @@ export interface Parameter$connectCoreV1GetNamespacedPodExec { stdout?: boolean; /** TTY if true indicates that a tty will be allocated for the exec call. Defaults to false. */ tty?: boolean; + /** name of the PodExecOptions */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$connectCoreV1GetNamespacedPodExec$Status$200 { "*/*": string; @@ -8721,10 +8721,6 @@ export interface Parameter$connectCoreV1PostNamespacedPodExec { command?: string; /** Container in which to execute the command. Defaults to only container if there is only one container in the pod. */ container?: string; - /** name of the PodExecOptions */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** Redirect the standard error stream of the pod for this call. Defaults to true. */ stderr?: boolean; /** Redirect the standard input stream of the pod for this call. Defaults to false. */ @@ -8733,6 +8729,10 @@ export interface Parameter$connectCoreV1PostNamespacedPodExec { stdout?: boolean; /** TTY if true indicates that a tty will be allocated for the exec call. Defaults to false. */ tty?: boolean; + /** name of the PodExecOptions */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$connectCoreV1PostNamespacedPodExec$Status$200 { "*/*": string; @@ -8746,10 +8746,6 @@ export interface Parameter$readCoreV1NamespacedPodLog { insecureSkipTLSVerifyBackend?: boolean; /** If set, the number of bytes to read from the server before terminating the log output. This may not display a complete final line of logging, and may return slightly more or slightly less than the specified limit. */ limitBytes?: number; - /** name of the Pod */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Return previous terminated container logs. Defaults to false. */ @@ -8760,6 +8756,10 @@ export interface Parameter$readCoreV1NamespacedPodLog { tailLines?: number; /** If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line of log output. Defaults to false. */ timestamps?: boolean; + /** name of the Pod */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readCoreV1NamespacedPodLog$Status$200 { "text/plain": string; @@ -8768,188 +8768,188 @@ export interface Response$readCoreV1NamespacedPodLog$Status$200 { "application/vnd.kubernetes.protobuf": string; } export interface Parameter$connectCoreV1GetNamespacedPodPortforward { + /** List of ports to forward Required when using WebSockets */ + ports?: number; /** name of the PodPortForwardOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** List of ports to forward Required when using WebSockets */ - ports?: number; } export interface Response$connectCoreV1GetNamespacedPodPortforward$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PostNamespacedPodPortforward { + /** List of ports to forward Required when using WebSockets */ + ports?: number; /** name of the PodPortForwardOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** List of ports to forward Required when using WebSockets */ - ports?: number; } export interface Response$connectCoreV1PostNamespacedPodPortforward$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1GetNamespacedPodProxy { + /** Path is the URL path to use for the current proxy request to pod. */ + path?: string; /** name of the PodProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the URL path to use for the current proxy request to pod. */ - path?: string; } export interface Response$connectCoreV1GetNamespacedPodProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PutNamespacedPodProxy { + /** Path is the URL path to use for the current proxy request to pod. */ + path?: string; /** name of the PodProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the URL path to use for the current proxy request to pod. */ - path?: string; } export interface Response$connectCoreV1PutNamespacedPodProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PostNamespacedPodProxy { + /** Path is the URL path to use for the current proxy request to pod. */ + path?: string; /** name of the PodProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the URL path to use for the current proxy request to pod. */ - path?: string; } export interface Response$connectCoreV1PostNamespacedPodProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1DeleteNamespacedPodProxy { + /** Path is the URL path to use for the current proxy request to pod. */ + path?: string; /** name of the PodProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the URL path to use for the current proxy request to pod. */ - path?: string; } export interface Response$connectCoreV1DeleteNamespacedPodProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1OptionsNamespacedPodProxy { + /** Path is the URL path to use for the current proxy request to pod. */ + path?: string; /** name of the PodProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the URL path to use for the current proxy request to pod. */ - path?: string; } export interface Response$connectCoreV1OptionsNamespacedPodProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1HeadNamespacedPodProxy { + /** Path is the URL path to use for the current proxy request to pod. */ + path?: string; /** name of the PodProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the URL path to use for the current proxy request to pod. */ - path?: string; } export interface Response$connectCoreV1HeadNamespacedPodProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PatchNamespacedPodProxy { + /** Path is the URL path to use for the current proxy request to pod. */ + path?: string; /** name of the PodProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the URL path to use for the current proxy request to pod. */ - path?: string; } export interface Response$connectCoreV1PatchNamespacedPodProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1GetNamespacedPodProxyWithPath { + /** path to the resource */ + path: string; /** name of the PodProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the URL path to use for the current proxy request to pod. */ - path?: string; } export interface Response$connectCoreV1GetNamespacedPodProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PutNamespacedPodProxyWithPath { + /** path to the resource */ + path: string; /** name of the PodProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the URL path to use for the current proxy request to pod. */ - path?: string; } export interface Response$connectCoreV1PutNamespacedPodProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PostNamespacedPodProxyWithPath { + /** path to the resource */ + path: string; /** name of the PodProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the URL path to use for the current proxy request to pod. */ - path?: string; } export interface Response$connectCoreV1PostNamespacedPodProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1DeleteNamespacedPodProxyWithPath { + /** path to the resource */ + path: string; /** name of the PodProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the URL path to use for the current proxy request to pod. */ - path?: string; } export interface Response$connectCoreV1DeleteNamespacedPodProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1OptionsNamespacedPodProxyWithPath { + /** path to the resource */ + path: string; /** name of the PodProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the URL path to use for the current proxy request to pod. */ - path?: string; } export interface Response$connectCoreV1OptionsNamespacedPodProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1HeadNamespacedPodProxyWithPath { + /** path to the resource */ + path: string; /** name of the PodProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the URL path to use for the current proxy request to pod. */ - path?: string; } export interface Response$connectCoreV1HeadNamespacedPodProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PatchNamespacedPodProxyWithPath { + /** path to the resource */ + path: string; /** name of the PodProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the URL path to use for the current proxy request to pod. */ - path?: string; } export interface Response$connectCoreV1PatchNamespacedPodProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$readCoreV1NamespacedPodStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the Pod */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readCoreV1NamespacedPodStatus$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$Pod; @@ -8957,16 +8957,16 @@ export interface Response$readCoreV1NamespacedPodStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Pod; } export interface Parameter$replaceCoreV1NamespacedPodStatus { - /** name of the Pod */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Pod */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceCoreV1NamespacedPodStatus = RequestBodies.io$k8s$api$core$v1$Pod.Content; export interface Response$replaceCoreV1NamespacedPodStatus$Status$200 { @@ -8980,10 +8980,6 @@ export interface Response$replaceCoreV1NamespacedPodStatus$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Pod; } export interface Parameter$patchCoreV1NamespacedPodStatus { - /** name of the Pod */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -8992,6 +8988,10 @@ export interface Parameter$patchCoreV1NamespacedPodStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Pod */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchCoreV1NamespacedPodStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedPodStatus$Status$200 { @@ -9000,8 +9000,6 @@ export interface Response$patchCoreV1NamespacedPodStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Pod; } export interface Parameter$listCoreV1NamespacedPodTemplate { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -9028,6 +9026,8 @@ export interface Parameter$listCoreV1NamespacedPodTemplate { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listCoreV1NamespacedPodTemplate$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$PodTemplateList; @@ -9037,14 +9037,14 @@ export interface Response$listCoreV1NamespacedPodTemplate$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$PodTemplateList; } export interface Parameter$createCoreV1NamespacedPodTemplate { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createCoreV1NamespacedPodTemplate = RequestBodies.io$k8s$api$core$v1$PodTemplate.Content; export interface Response$createCoreV1NamespacedPodTemplate$Status$200 { @@ -9063,8 +9063,6 @@ export interface Response$createCoreV1NamespacedPodTemplate$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PodTemplate; } export interface Parameter$deleteCoreV1CollectionNamespacedPodTemplate { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -9099,6 +9097,8 @@ export interface Parameter$deleteCoreV1CollectionNamespacedPodTemplate { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1CollectionNamespacedPodTemplate = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1CollectionNamespacedPodTemplate$Status$200 { @@ -9107,16 +9107,16 @@ export interface Response$deleteCoreV1CollectionNamespacedPodTemplate$Status$200 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readCoreV1NamespacedPodTemplate { - /** name of the PodTemplate */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the PodTemplate */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readCoreV1NamespacedPodTemplate$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$PodTemplate; @@ -9124,16 +9124,16 @@ export interface Response$readCoreV1NamespacedPodTemplate$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PodTemplate; } export interface Parameter$replaceCoreV1NamespacedPodTemplate { - /** name of the PodTemplate */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the PodTemplate */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceCoreV1NamespacedPodTemplate = RequestBodies.io$k8s$api$core$v1$PodTemplate.Content; export interface Response$replaceCoreV1NamespacedPodTemplate$Status$200 { @@ -9147,10 +9147,6 @@ export interface Response$replaceCoreV1NamespacedPodTemplate$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PodTemplate; } export interface Parameter$deleteCoreV1NamespacedPodTemplate { - /** name of the PodTemplate */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -9161,6 +9157,10 @@ export interface Parameter$deleteCoreV1NamespacedPodTemplate { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the PodTemplate */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1NamespacedPodTemplate = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1NamespacedPodTemplate$Status$200 { @@ -9174,10 +9174,6 @@ export interface Response$deleteCoreV1NamespacedPodTemplate$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PodTemplate; } export interface Parameter$patchCoreV1NamespacedPodTemplate { - /** name of the PodTemplate */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -9186,6 +9182,10 @@ export interface Parameter$patchCoreV1NamespacedPodTemplate { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the PodTemplate */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchCoreV1NamespacedPodTemplate = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedPodTemplate$Status$200 { @@ -9194,8 +9194,6 @@ export interface Response$patchCoreV1NamespacedPodTemplate$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PodTemplate; } export interface Parameter$listCoreV1NamespacedReplicationController { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -9222,6 +9220,8 @@ export interface Parameter$listCoreV1NamespacedReplicationController { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listCoreV1NamespacedReplicationController$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$ReplicationControllerList; @@ -9231,14 +9231,14 @@ export interface Response$listCoreV1NamespacedReplicationController$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$ReplicationControllerList; } export interface Parameter$createCoreV1NamespacedReplicationController { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createCoreV1NamespacedReplicationController = RequestBodies.io$k8s$api$core$v1$ReplicationController.Content; export interface Response$createCoreV1NamespacedReplicationController$Status$200 { @@ -9257,8 +9257,6 @@ export interface Response$createCoreV1NamespacedReplicationController$Status$202 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ReplicationController; } export interface Parameter$deleteCoreV1CollectionNamespacedReplicationController { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -9293,6 +9291,8 @@ export interface Parameter$deleteCoreV1CollectionNamespacedReplicationController timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1CollectionNamespacedReplicationController = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1CollectionNamespacedReplicationController$Status$200 { @@ -9301,16 +9301,16 @@ export interface Response$deleteCoreV1CollectionNamespacedReplicationController$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readCoreV1NamespacedReplicationController { - /** name of the ReplicationController */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the ReplicationController */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readCoreV1NamespacedReplicationController$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$ReplicationController; @@ -9318,16 +9318,16 @@ export interface Response$readCoreV1NamespacedReplicationController$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ReplicationController; } export interface Parameter$replaceCoreV1NamespacedReplicationController { - /** name of the ReplicationController */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the ReplicationController */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceCoreV1NamespacedReplicationController = RequestBodies.io$k8s$api$core$v1$ReplicationController.Content; export interface Response$replaceCoreV1NamespacedReplicationController$Status$200 { @@ -9341,10 +9341,6 @@ export interface Response$replaceCoreV1NamespacedReplicationController$Status$20 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ReplicationController; } export interface Parameter$deleteCoreV1NamespacedReplicationController { - /** name of the ReplicationController */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -9355,6 +9351,10 @@ export interface Parameter$deleteCoreV1NamespacedReplicationController { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the ReplicationController */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1NamespacedReplicationController = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1NamespacedReplicationController$Status$200 { @@ -9368,10 +9368,6 @@ export interface Response$deleteCoreV1NamespacedReplicationController$Status$202 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchCoreV1NamespacedReplicationController { - /** name of the ReplicationController */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -9380,6 +9376,10 @@ export interface Parameter$patchCoreV1NamespacedReplicationController { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the ReplicationController */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchCoreV1NamespacedReplicationController = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedReplicationController$Status$200 { @@ -9388,12 +9388,12 @@ export interface Response$patchCoreV1NamespacedReplicationController$Status$200 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ReplicationController; } export interface Parameter$readCoreV1NamespacedReplicationControllerScale { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the Scale */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readCoreV1NamespacedReplicationControllerScale$Status$200 { "application/json": Schemas.io$k8s$api$autoscaling$v1$Scale; @@ -9401,16 +9401,16 @@ export interface Response$readCoreV1NamespacedReplicationControllerScale$Status$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; } export interface Parameter$replaceCoreV1NamespacedReplicationControllerScale { - /** name of the Scale */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Scale */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceCoreV1NamespacedReplicationControllerScale = RequestBodies.io$k8s$api$autoscaling$v1$Scale.Content; export interface Response$replaceCoreV1NamespacedReplicationControllerScale$Status$200 { @@ -9424,10 +9424,6 @@ export interface Response$replaceCoreV1NamespacedReplicationControllerScale$Stat "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; } export interface Parameter$patchCoreV1NamespacedReplicationControllerScale { - /** name of the Scale */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -9436,6 +9432,10 @@ export interface Parameter$patchCoreV1NamespacedReplicationControllerScale { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Scale */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchCoreV1NamespacedReplicationControllerScale = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedReplicationControllerScale$Status$200 { @@ -9444,12 +9444,12 @@ export interface Response$patchCoreV1NamespacedReplicationControllerScale$Status "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; } export interface Parameter$readCoreV1NamespacedReplicationControllerStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the ReplicationController */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readCoreV1NamespacedReplicationControllerStatus$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$ReplicationController; @@ -9457,16 +9457,16 @@ export interface Response$readCoreV1NamespacedReplicationControllerStatus$Status "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ReplicationController; } export interface Parameter$replaceCoreV1NamespacedReplicationControllerStatus { - /** name of the ReplicationController */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the ReplicationController */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceCoreV1NamespacedReplicationControllerStatus = RequestBodies.io$k8s$api$core$v1$ReplicationController.Content; export interface Response$replaceCoreV1NamespacedReplicationControllerStatus$Status$200 { @@ -9480,10 +9480,6 @@ export interface Response$replaceCoreV1NamespacedReplicationControllerStatus$Sta "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ReplicationController; } export interface Parameter$patchCoreV1NamespacedReplicationControllerStatus { - /** name of the ReplicationController */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -9492,6 +9488,10 @@ export interface Parameter$patchCoreV1NamespacedReplicationControllerStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the ReplicationController */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchCoreV1NamespacedReplicationControllerStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedReplicationControllerStatus$Status$200 { @@ -9500,8 +9500,6 @@ export interface Response$patchCoreV1NamespacedReplicationControllerStatus$Statu "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ReplicationController; } export interface Parameter$listCoreV1NamespacedResourceQuota { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -9528,6 +9526,8 @@ export interface Parameter$listCoreV1NamespacedResourceQuota { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listCoreV1NamespacedResourceQuota$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$ResourceQuotaList; @@ -9537,14 +9537,14 @@ export interface Response$listCoreV1NamespacedResourceQuota$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$ResourceQuotaList; } export interface Parameter$createCoreV1NamespacedResourceQuota { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createCoreV1NamespacedResourceQuota = RequestBodies.io$k8s$api$core$v1$ResourceQuota.Content; export interface Response$createCoreV1NamespacedResourceQuota$Status$200 { @@ -9563,8 +9563,6 @@ export interface Response$createCoreV1NamespacedResourceQuota$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ResourceQuota; } export interface Parameter$deleteCoreV1CollectionNamespacedResourceQuota { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -9599,6 +9597,8 @@ export interface Parameter$deleteCoreV1CollectionNamespacedResourceQuota { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1CollectionNamespacedResourceQuota = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1CollectionNamespacedResourceQuota$Status$200 { @@ -9607,16 +9607,16 @@ export interface Response$deleteCoreV1CollectionNamespacedResourceQuota$Status$2 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readCoreV1NamespacedResourceQuota { - /** name of the ResourceQuota */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the ResourceQuota */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readCoreV1NamespacedResourceQuota$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$ResourceQuota; @@ -9624,16 +9624,16 @@ export interface Response$readCoreV1NamespacedResourceQuota$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ResourceQuota; } export interface Parameter$replaceCoreV1NamespacedResourceQuota { - /** name of the ResourceQuota */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the ResourceQuota */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceCoreV1NamespacedResourceQuota = RequestBodies.io$k8s$api$core$v1$ResourceQuota.Content; export interface Response$replaceCoreV1NamespacedResourceQuota$Status$200 { @@ -9647,10 +9647,6 @@ export interface Response$replaceCoreV1NamespacedResourceQuota$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ResourceQuota; } export interface Parameter$deleteCoreV1NamespacedResourceQuota { - /** name of the ResourceQuota */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -9661,6 +9657,10 @@ export interface Parameter$deleteCoreV1NamespacedResourceQuota { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the ResourceQuota */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1NamespacedResourceQuota = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1NamespacedResourceQuota$Status$200 { @@ -9674,10 +9674,6 @@ export interface Response$deleteCoreV1NamespacedResourceQuota$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ResourceQuota; } export interface Parameter$patchCoreV1NamespacedResourceQuota { - /** name of the ResourceQuota */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -9686,6 +9682,10 @@ export interface Parameter$patchCoreV1NamespacedResourceQuota { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the ResourceQuota */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchCoreV1NamespacedResourceQuota = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedResourceQuota$Status$200 { @@ -9694,12 +9694,12 @@ export interface Response$patchCoreV1NamespacedResourceQuota$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ResourceQuota; } export interface Parameter$readCoreV1NamespacedResourceQuotaStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the ResourceQuota */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readCoreV1NamespacedResourceQuotaStatus$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$ResourceQuota; @@ -9707,16 +9707,16 @@ export interface Response$readCoreV1NamespacedResourceQuotaStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ResourceQuota; } export interface Parameter$replaceCoreV1NamespacedResourceQuotaStatus { - /** name of the ResourceQuota */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the ResourceQuota */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceCoreV1NamespacedResourceQuotaStatus = RequestBodies.io$k8s$api$core$v1$ResourceQuota.Content; export interface Response$replaceCoreV1NamespacedResourceQuotaStatus$Status$200 { @@ -9730,10 +9730,6 @@ export interface Response$replaceCoreV1NamespacedResourceQuotaStatus$Status$201 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ResourceQuota; } export interface Parameter$patchCoreV1NamespacedResourceQuotaStatus { - /** name of the ResourceQuota */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -9742,6 +9738,10 @@ export interface Parameter$patchCoreV1NamespacedResourceQuotaStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the ResourceQuota */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchCoreV1NamespacedResourceQuotaStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedResourceQuotaStatus$Status$200 { @@ -9750,8 +9750,6 @@ export interface Response$patchCoreV1NamespacedResourceQuotaStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ResourceQuota; } export interface Parameter$listCoreV1NamespacedSecret { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -9778,6 +9776,8 @@ export interface Parameter$listCoreV1NamespacedSecret { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listCoreV1NamespacedSecret$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$SecretList; @@ -9787,14 +9787,14 @@ export interface Response$listCoreV1NamespacedSecret$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$SecretList; } export interface Parameter$createCoreV1NamespacedSecret { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createCoreV1NamespacedSecret = RequestBodies.io$k8s$api$core$v1$Secret.Content; export interface Response$createCoreV1NamespacedSecret$Status$200 { @@ -9813,8 +9813,6 @@ export interface Response$createCoreV1NamespacedSecret$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Secret; } export interface Parameter$deleteCoreV1CollectionNamespacedSecret { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -9849,6 +9847,8 @@ export interface Parameter$deleteCoreV1CollectionNamespacedSecret { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1CollectionNamespacedSecret = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1CollectionNamespacedSecret$Status$200 { @@ -9857,16 +9857,16 @@ export interface Response$deleteCoreV1CollectionNamespacedSecret$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readCoreV1NamespacedSecret { - /** name of the Secret */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the Secret */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readCoreV1NamespacedSecret$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$Secret; @@ -9874,16 +9874,16 @@ export interface Response$readCoreV1NamespacedSecret$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Secret; } export interface Parameter$replaceCoreV1NamespacedSecret { - /** name of the Secret */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Secret */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceCoreV1NamespacedSecret = RequestBodies.io$k8s$api$core$v1$Secret.Content; export interface Response$replaceCoreV1NamespacedSecret$Status$200 { @@ -9897,10 +9897,6 @@ export interface Response$replaceCoreV1NamespacedSecret$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Secret; } export interface Parameter$deleteCoreV1NamespacedSecret { - /** name of the Secret */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -9911,6 +9907,10 @@ export interface Parameter$deleteCoreV1NamespacedSecret { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the Secret */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1NamespacedSecret = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1NamespacedSecret$Status$200 { @@ -9924,10 +9924,6 @@ export interface Response$deleteCoreV1NamespacedSecret$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchCoreV1NamespacedSecret { - /** name of the Secret */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -9936,6 +9932,10 @@ export interface Parameter$patchCoreV1NamespacedSecret { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Secret */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchCoreV1NamespacedSecret = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedSecret$Status$200 { @@ -9944,8 +9944,6 @@ export interface Response$patchCoreV1NamespacedSecret$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Secret; } export interface Parameter$listCoreV1NamespacedServiceAccount { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -9972,6 +9970,8 @@ export interface Parameter$listCoreV1NamespacedServiceAccount { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listCoreV1NamespacedServiceAccount$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$ServiceAccountList; @@ -9981,14 +9981,14 @@ export interface Response$listCoreV1NamespacedServiceAccount$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$ServiceAccountList; } export interface Parameter$createCoreV1NamespacedServiceAccount { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createCoreV1NamespacedServiceAccount = RequestBodies.io$k8s$api$core$v1$ServiceAccount.Content; export interface Response$createCoreV1NamespacedServiceAccount$Status$200 { @@ -10007,8 +10007,6 @@ export interface Response$createCoreV1NamespacedServiceAccount$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ServiceAccount; } export interface Parameter$deleteCoreV1CollectionNamespacedServiceAccount { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -10043,6 +10041,8 @@ export interface Parameter$deleteCoreV1CollectionNamespacedServiceAccount { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1CollectionNamespacedServiceAccount = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1CollectionNamespacedServiceAccount$Status$200 { @@ -10051,16 +10051,16 @@ export interface Response$deleteCoreV1CollectionNamespacedServiceAccount$Status$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readCoreV1NamespacedServiceAccount { - /** name of the ServiceAccount */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the ServiceAccount */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readCoreV1NamespacedServiceAccount$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$ServiceAccount; @@ -10068,16 +10068,16 @@ export interface Response$readCoreV1NamespacedServiceAccount$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ServiceAccount; } export interface Parameter$replaceCoreV1NamespacedServiceAccount { - /** name of the ServiceAccount */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the ServiceAccount */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceCoreV1NamespacedServiceAccount = RequestBodies.io$k8s$api$core$v1$ServiceAccount.Content; export interface Response$replaceCoreV1NamespacedServiceAccount$Status$200 { @@ -10091,10 +10091,6 @@ export interface Response$replaceCoreV1NamespacedServiceAccount$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ServiceAccount; } export interface Parameter$deleteCoreV1NamespacedServiceAccount { - /** name of the ServiceAccount */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -10105,6 +10101,10 @@ export interface Parameter$deleteCoreV1NamespacedServiceAccount { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the ServiceAccount */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1NamespacedServiceAccount = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1NamespacedServiceAccount$Status$200 { @@ -10118,10 +10118,6 @@ export interface Response$deleteCoreV1NamespacedServiceAccount$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ServiceAccount; } export interface Parameter$patchCoreV1NamespacedServiceAccount { - /** name of the ServiceAccount */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -10130,6 +10126,10 @@ export interface Parameter$patchCoreV1NamespacedServiceAccount { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the ServiceAccount */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchCoreV1NamespacedServiceAccount = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedServiceAccount$Status$200 { @@ -10142,12 +10142,12 @@ export interface Parameter$createCoreV1NamespacedServiceAccountToken { dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the TokenRequest */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface RequestBody$createCoreV1NamespacedServiceAccountToken { "*/*": Schemas.io$k8s$api$authentication$v1$TokenRequest; @@ -10168,8 +10168,6 @@ export interface Response$createCoreV1NamespacedServiceAccountToken$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$authentication$v1$TokenRequest; } export interface Parameter$listCoreV1NamespacedService { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -10196,6 +10194,8 @@ export interface Parameter$listCoreV1NamespacedService { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listCoreV1NamespacedService$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$ServiceList; @@ -10205,14 +10205,14 @@ export interface Response$listCoreV1NamespacedService$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$ServiceList; } export interface Parameter$createCoreV1NamespacedService { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createCoreV1NamespacedService = RequestBodies.io$k8s$api$core$v1$Service.Content; export interface Response$createCoreV1NamespacedService$Status$200 { @@ -10231,16 +10231,16 @@ export interface Response$createCoreV1NamespacedService$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Service; } export interface Parameter$readCoreV1NamespacedService { - /** name of the Service */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the Service */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readCoreV1NamespacedService$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$Service; @@ -10248,16 +10248,16 @@ export interface Response$readCoreV1NamespacedService$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Service; } export interface Parameter$replaceCoreV1NamespacedService { - /** name of the Service */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Service */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceCoreV1NamespacedService = RequestBodies.io$k8s$api$core$v1$Service.Content; export interface Response$replaceCoreV1NamespacedService$Status$200 { @@ -10271,10 +10271,6 @@ export interface Response$replaceCoreV1NamespacedService$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Service; } export interface Parameter$deleteCoreV1NamespacedService { - /** name of the Service */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -10285,6 +10281,10 @@ export interface Parameter$deleteCoreV1NamespacedService { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the Service */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoreV1NamespacedService = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1NamespacedService$Status$200 { @@ -10298,10 +10298,6 @@ export interface Response$deleteCoreV1NamespacedService$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchCoreV1NamespacedService { - /** name of the Service */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -10310,6 +10306,10 @@ export interface Parameter$patchCoreV1NamespacedService { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Service */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchCoreV1NamespacedService = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedService$Status$200 { @@ -10318,166 +10318,166 @@ export interface Response$patchCoreV1NamespacedService$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Service; } export interface Parameter$connectCoreV1GetNamespacedServiceProxy { + /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ + path?: string; /** name of the ServiceProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ - path?: string; } export interface Response$connectCoreV1GetNamespacedServiceProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PutNamespacedServiceProxy { + /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ + path?: string; /** name of the ServiceProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ - path?: string; } export interface Response$connectCoreV1PutNamespacedServiceProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PostNamespacedServiceProxy { + /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ + path?: string; /** name of the ServiceProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ - path?: string; } export interface Response$connectCoreV1PostNamespacedServiceProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1DeleteNamespacedServiceProxy { + /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ + path?: string; /** name of the ServiceProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ - path?: string; } export interface Response$connectCoreV1DeleteNamespacedServiceProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1OptionsNamespacedServiceProxy { + /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ + path?: string; /** name of the ServiceProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ - path?: string; } export interface Response$connectCoreV1OptionsNamespacedServiceProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1HeadNamespacedServiceProxy { + /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ + path?: string; /** name of the ServiceProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ - path?: string; } export interface Response$connectCoreV1HeadNamespacedServiceProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PatchNamespacedServiceProxy { + /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ + path?: string; /** name of the ServiceProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ - path?: string; } export interface Response$connectCoreV1PatchNamespacedServiceProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1GetNamespacedServiceProxyWithPath { + /** path to the resource */ + path: string; /** name of the ServiceProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ - path?: string; } export interface Response$connectCoreV1GetNamespacedServiceProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PutNamespacedServiceProxyWithPath { + /** path to the resource */ + path: string; /** name of the ServiceProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ - path?: string; } export interface Response$connectCoreV1PutNamespacedServiceProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PostNamespacedServiceProxyWithPath { + /** path to the resource */ + path: string; /** name of the ServiceProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ - path?: string; } export interface Response$connectCoreV1PostNamespacedServiceProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1DeleteNamespacedServiceProxyWithPath { + /** path to the resource */ + path: string; /** name of the ServiceProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ - path?: string; } export interface Response$connectCoreV1DeleteNamespacedServiceProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1OptionsNamespacedServiceProxyWithPath { + /** path to the resource */ + path: string; /** name of the ServiceProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ - path?: string; } export interface Response$connectCoreV1OptionsNamespacedServiceProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1HeadNamespacedServiceProxyWithPath { + /** path to the resource */ + path: string; /** name of the ServiceProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ - path?: string; } export interface Response$connectCoreV1HeadNamespacedServiceProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PatchNamespacedServiceProxyWithPath { + /** path to the resource */ + path: string; /** name of the ServiceProxyOptions */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. */ - path?: string; } export interface Response$connectCoreV1PatchNamespacedServiceProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$readCoreV1NamespacedServiceStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the Service */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readCoreV1NamespacedServiceStatus$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$Service; @@ -10485,16 +10485,16 @@ export interface Response$readCoreV1NamespacedServiceStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Service; } export interface Parameter$replaceCoreV1NamespacedServiceStatus { - /** name of the Service */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Service */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceCoreV1NamespacedServiceStatus = RequestBodies.io$k8s$api$core$v1$Service.Content; export interface Response$replaceCoreV1NamespacedServiceStatus$Status$200 { @@ -10508,10 +10508,6 @@ export interface Response$replaceCoreV1NamespacedServiceStatus$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Service; } export interface Parameter$patchCoreV1NamespacedServiceStatus { - /** name of the Service */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -10520,6 +10516,10 @@ export interface Parameter$patchCoreV1NamespacedServiceStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Service */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchCoreV1NamespacedServiceStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedServiceStatus$Status$200 { @@ -10528,14 +10528,14 @@ export interface Response$patchCoreV1NamespacedServiceStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Service; } export interface Parameter$readCoreV1Namespace { - /** name of the Namespace */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the Namespace */ + name: string; } export interface Response$readCoreV1Namespace$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$Namespace; @@ -10543,14 +10543,14 @@ export interface Response$readCoreV1Namespace$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Namespace; } export interface Parameter$replaceCoreV1Namespace { - /** name of the Namespace */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Namespace */ + name: string; } export type RequestBody$replaceCoreV1Namespace = RequestBodies.io$k8s$api$core$v1$Namespace.Content; export interface Response$replaceCoreV1Namespace$Status$200 { @@ -10564,8 +10564,6 @@ export interface Response$replaceCoreV1Namespace$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Namespace; } export interface Parameter$deleteCoreV1Namespace { - /** name of the Namespace */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -10576,6 +10574,8 @@ export interface Parameter$deleteCoreV1Namespace { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the Namespace */ + name: string; } export type RequestBody$deleteCoreV1Namespace = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1Namespace$Status$200 { @@ -10589,8 +10589,6 @@ export interface Response$deleteCoreV1Namespace$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchCoreV1Namespace { - /** name of the Namespace */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -10599,6 +10597,8 @@ export interface Parameter$patchCoreV1Namespace { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Namespace */ + name: string; } export type RequestBody$patchCoreV1Namespace = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1Namespace$Status$200 { @@ -10611,10 +10611,10 @@ export interface Parameter$replaceCoreV1NamespaceFinalize { dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; - /** name of the Namespace */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** name of the Namespace */ + name: string; } export type RequestBody$replaceCoreV1NamespaceFinalize = RequestBodies.io$k8s$api$core$v1$Namespace.Content; export interface Response$replaceCoreV1NamespaceFinalize$Status$200 { @@ -10628,10 +10628,10 @@ export interface Response$replaceCoreV1NamespaceFinalize$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Namespace; } export interface Parameter$readCoreV1NamespaceStatus { - /** name of the Namespace */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** name of the Namespace */ + name: string; } export interface Response$readCoreV1NamespaceStatus$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$Namespace; @@ -10639,14 +10639,14 @@ export interface Response$readCoreV1NamespaceStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Namespace; } export interface Parameter$replaceCoreV1NamespaceStatus { - /** name of the Namespace */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Namespace */ + name: string; } export type RequestBody$replaceCoreV1NamespaceStatus = RequestBodies.io$k8s$api$core$v1$Namespace.Content; export interface Response$replaceCoreV1NamespaceStatus$Status$200 { @@ -10660,8 +10660,6 @@ export interface Response$replaceCoreV1NamespaceStatus$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Namespace; } export interface Parameter$patchCoreV1NamespaceStatus { - /** name of the Namespace */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -10670,6 +10668,8 @@ export interface Parameter$patchCoreV1NamespaceStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Namespace */ + name: string; } export type RequestBody$patchCoreV1NamespaceStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespaceStatus$Status$200 { @@ -10779,14 +10779,14 @@ export interface Response$deleteCoreV1CollectionNode$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readCoreV1Node { - /** name of the Node */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the Node */ + name: string; } export interface Response$readCoreV1Node$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$Node; @@ -10794,14 +10794,14 @@ export interface Response$readCoreV1Node$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Node; } export interface Parameter$replaceCoreV1Node { - /** name of the Node */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Node */ + name: string; } export type RequestBody$replaceCoreV1Node = RequestBodies.io$k8s$api$core$v1$Node.Content; export interface Response$replaceCoreV1Node$Status$200 { @@ -10815,8 +10815,6 @@ export interface Response$replaceCoreV1Node$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Node; } export interface Parameter$deleteCoreV1Node { - /** name of the Node */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -10827,6 +10825,8 @@ export interface Parameter$deleteCoreV1Node { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the Node */ + name: string; } export type RequestBody$deleteCoreV1Node = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1Node$Status$200 { @@ -10840,8 +10840,6 @@ export interface Response$deleteCoreV1Node$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchCoreV1Node { - /** name of the Node */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -10850,6 +10848,8 @@ export interface Parameter$patchCoreV1Node { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Node */ + name: string; } export type RequestBody$patchCoreV1Node = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1Node$Status$200 { @@ -10858,136 +10858,136 @@ export interface Response$patchCoreV1Node$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Node; } export interface Parameter$connectCoreV1GetNodeProxy { - /** name of the NodeProxyOptions */ - name: string; /** Path is the URL path to use for the current proxy request to node. */ path?: string; + /** name of the NodeProxyOptions */ + name: string; } export interface Response$connectCoreV1GetNodeProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PutNodeProxy { - /** name of the NodeProxyOptions */ - name: string; /** Path is the URL path to use for the current proxy request to node. */ path?: string; + /** name of the NodeProxyOptions */ + name: string; } export interface Response$connectCoreV1PutNodeProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PostNodeProxy { - /** name of the NodeProxyOptions */ - name: string; /** Path is the URL path to use for the current proxy request to node. */ path?: string; + /** name of the NodeProxyOptions */ + name: string; } export interface Response$connectCoreV1PostNodeProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1DeleteNodeProxy { - /** name of the NodeProxyOptions */ - name: string; /** Path is the URL path to use for the current proxy request to node. */ path?: string; + /** name of the NodeProxyOptions */ + name: string; } export interface Response$connectCoreV1DeleteNodeProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1OptionsNodeProxy { - /** name of the NodeProxyOptions */ - name: string; /** Path is the URL path to use for the current proxy request to node. */ path?: string; + /** name of the NodeProxyOptions */ + name: string; } export interface Response$connectCoreV1OptionsNodeProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1HeadNodeProxy { - /** name of the NodeProxyOptions */ - name: string; /** Path is the URL path to use for the current proxy request to node. */ path?: string; + /** name of the NodeProxyOptions */ + name: string; } export interface Response$connectCoreV1HeadNodeProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PatchNodeProxy { - /** name of the NodeProxyOptions */ - name: string; /** Path is the URL path to use for the current proxy request to node. */ path?: string; + /** name of the NodeProxyOptions */ + name: string; } export interface Response$connectCoreV1PatchNodeProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1GetNodeProxyWithPath { + /** path to the resource */ + path: string; /** name of the NodeProxyOptions */ name: string; - /** Path is the URL path to use for the current proxy request to node. */ - path?: string; } export interface Response$connectCoreV1GetNodeProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PutNodeProxyWithPath { + /** path to the resource */ + path: string; /** name of the NodeProxyOptions */ name: string; - /** Path is the URL path to use for the current proxy request to node. */ - path?: string; } export interface Response$connectCoreV1PutNodeProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PostNodeProxyWithPath { + /** path to the resource */ + path: string; /** name of the NodeProxyOptions */ name: string; - /** Path is the URL path to use for the current proxy request to node. */ - path?: string; } export interface Response$connectCoreV1PostNodeProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1DeleteNodeProxyWithPath { + /** path to the resource */ + path: string; /** name of the NodeProxyOptions */ name: string; - /** Path is the URL path to use for the current proxy request to node. */ - path?: string; } export interface Response$connectCoreV1DeleteNodeProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1OptionsNodeProxyWithPath { + /** path to the resource */ + path: string; /** name of the NodeProxyOptions */ name: string; - /** Path is the URL path to use for the current proxy request to node. */ - path?: string; } export interface Response$connectCoreV1OptionsNodeProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1HeadNodeProxyWithPath { + /** path to the resource */ + path: string; /** name of the NodeProxyOptions */ name: string; - /** Path is the URL path to use for the current proxy request to node. */ - path?: string; } export interface Response$connectCoreV1HeadNodeProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PatchNodeProxyWithPath { + /** path to the resource */ + path: string; /** name of the NodeProxyOptions */ name: string; - /** Path is the URL path to use for the current proxy request to node. */ - path?: string; } export interface Response$connectCoreV1PatchNodeProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$readCoreV1NodeStatus { - /** name of the Node */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** name of the Node */ + name: string; } export interface Response$readCoreV1NodeStatus$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$Node; @@ -10995,14 +10995,14 @@ export interface Response$readCoreV1NodeStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Node; } export interface Parameter$replaceCoreV1NodeStatus { - /** name of the Node */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Node */ + name: string; } export type RequestBody$replaceCoreV1NodeStatus = RequestBodies.io$k8s$api$core$v1$Node.Content; export interface Response$replaceCoreV1NodeStatus$Status$200 { @@ -11016,8 +11016,6 @@ export interface Response$replaceCoreV1NodeStatus$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Node; } export interface Parameter$patchCoreV1NodeStatus { - /** name of the Node */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -11026,6 +11024,8 @@ export interface Parameter$patchCoreV1NodeStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Node */ + name: string; } export type RequestBody$patchCoreV1NodeStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NodeStatus$Status$200 { @@ -11170,14 +11170,14 @@ export interface Response$deleteCoreV1CollectionPersistentVolume$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readCoreV1PersistentVolume { - /** name of the PersistentVolume */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the PersistentVolume */ + name: string; } export interface Response$readCoreV1PersistentVolume$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$PersistentVolume; @@ -11185,14 +11185,14 @@ export interface Response$readCoreV1PersistentVolume$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolume; } export interface Parameter$replaceCoreV1PersistentVolume { - /** name of the PersistentVolume */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the PersistentVolume */ + name: string; } export type RequestBody$replaceCoreV1PersistentVolume = RequestBodies.io$k8s$api$core$v1$PersistentVolume.Content; export interface Response$replaceCoreV1PersistentVolume$Status$200 { @@ -11206,8 +11206,6 @@ export interface Response$replaceCoreV1PersistentVolume$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolume; } export interface Parameter$deleteCoreV1PersistentVolume { - /** name of the PersistentVolume */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -11218,6 +11216,8 @@ export interface Parameter$deleteCoreV1PersistentVolume { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the PersistentVolume */ + name: string; } export type RequestBody$deleteCoreV1PersistentVolume = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1PersistentVolume$Status$200 { @@ -11231,8 +11231,6 @@ export interface Response$deleteCoreV1PersistentVolume$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolume; } export interface Parameter$patchCoreV1PersistentVolume { - /** name of the PersistentVolume */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -11241,6 +11239,8 @@ export interface Parameter$patchCoreV1PersistentVolume { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the PersistentVolume */ + name: string; } export type RequestBody$patchCoreV1PersistentVolume = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1PersistentVolume$Status$200 { @@ -11249,10 +11249,10 @@ export interface Response$patchCoreV1PersistentVolume$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolume; } export interface Parameter$readCoreV1PersistentVolumeStatus { - /** name of the PersistentVolume */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** name of the PersistentVolume */ + name: string; } export interface Response$readCoreV1PersistentVolumeStatus$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$PersistentVolume; @@ -11260,14 +11260,14 @@ export interface Response$readCoreV1PersistentVolumeStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolume; } export interface Parameter$replaceCoreV1PersistentVolumeStatus { - /** name of the PersistentVolume */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the PersistentVolume */ + name: string; } export type RequestBody$replaceCoreV1PersistentVolumeStatus = RequestBodies.io$k8s$api$core$v1$PersistentVolume.Content; export interface Response$replaceCoreV1PersistentVolumeStatus$Status$200 { @@ -11281,8 +11281,6 @@ export interface Response$replaceCoreV1PersistentVolumeStatus$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolume; } export interface Parameter$patchCoreV1PersistentVolumeStatus { - /** name of the PersistentVolume */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -11291,6 +11289,8 @@ export interface Parameter$patchCoreV1PersistentVolumeStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the PersistentVolume */ + name: string; } export type RequestBody$patchCoreV1PersistentVolumeStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1PersistentVolumeStatus$Status$200 { @@ -11737,8 +11737,6 @@ export interface Parameter$watchCoreV1NamespacedConfigMapList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -11747,6 +11745,8 @@ export interface Parameter$watchCoreV1NamespacedConfigMapList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedConfigMapList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -11774,10 +11774,6 @@ export interface Parameter$watchCoreV1NamespacedConfigMap { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the ConfigMap */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -11786,6 +11782,10 @@ export interface Parameter$watchCoreV1NamespacedConfigMap { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the ConfigMap */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedConfigMap$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -11813,8 +11813,6 @@ export interface Parameter$watchCoreV1NamespacedEndpointsList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -11823,6 +11821,8 @@ export interface Parameter$watchCoreV1NamespacedEndpointsList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedEndpointsList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -11850,10 +11850,6 @@ export interface Parameter$watchCoreV1NamespacedEndpoints { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the Endpoints */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -11862,6 +11858,10 @@ export interface Parameter$watchCoreV1NamespacedEndpoints { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the Endpoints */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedEndpoints$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -11889,8 +11889,6 @@ export interface Parameter$watchCoreV1NamespacedEventList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -11899,6 +11897,8 @@ export interface Parameter$watchCoreV1NamespacedEventList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedEventList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -11926,10 +11926,6 @@ export interface Parameter$watchCoreV1NamespacedEvent { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the Event */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -11938,6 +11934,10 @@ export interface Parameter$watchCoreV1NamespacedEvent { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the Event */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedEvent$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -11965,8 +11965,6 @@ export interface Parameter$watchCoreV1NamespacedLimitRangeList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -11975,6 +11973,8 @@ export interface Parameter$watchCoreV1NamespacedLimitRangeList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedLimitRangeList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -12002,10 +12002,6 @@ export interface Parameter$watchCoreV1NamespacedLimitRange { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the LimitRange */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -12014,6 +12010,10 @@ export interface Parameter$watchCoreV1NamespacedLimitRange { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the LimitRange */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedLimitRange$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -12041,8 +12041,6 @@ export interface Parameter$watchCoreV1NamespacedPersistentVolumeClaimList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -12051,6 +12049,8 @@ export interface Parameter$watchCoreV1NamespacedPersistentVolumeClaimList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedPersistentVolumeClaimList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -12078,10 +12078,6 @@ export interface Parameter$watchCoreV1NamespacedPersistentVolumeClaim { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the PersistentVolumeClaim */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -12090,6 +12086,10 @@ export interface Parameter$watchCoreV1NamespacedPersistentVolumeClaim { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the PersistentVolumeClaim */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedPersistentVolumeClaim$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -12117,8 +12117,6 @@ export interface Parameter$watchCoreV1NamespacedPodList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -12127,6 +12125,8 @@ export interface Parameter$watchCoreV1NamespacedPodList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedPodList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -12154,10 +12154,6 @@ export interface Parameter$watchCoreV1NamespacedPod { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the Pod */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -12166,6 +12162,10 @@ export interface Parameter$watchCoreV1NamespacedPod { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the Pod */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedPod$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -12193,8 +12193,6 @@ export interface Parameter$watchCoreV1NamespacedPodTemplateList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -12203,6 +12201,8 @@ export interface Parameter$watchCoreV1NamespacedPodTemplateList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedPodTemplateList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -12230,10 +12230,6 @@ export interface Parameter$watchCoreV1NamespacedPodTemplate { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the PodTemplate */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -12242,6 +12238,10 @@ export interface Parameter$watchCoreV1NamespacedPodTemplate { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the PodTemplate */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedPodTemplate$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -12269,8 +12269,6 @@ export interface Parameter$watchCoreV1NamespacedReplicationControllerList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -12279,6 +12277,8 @@ export interface Parameter$watchCoreV1NamespacedReplicationControllerList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedReplicationControllerList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -12306,10 +12306,6 @@ export interface Parameter$watchCoreV1NamespacedReplicationController { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the ReplicationController */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -12318,6 +12314,10 @@ export interface Parameter$watchCoreV1NamespacedReplicationController { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the ReplicationController */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedReplicationController$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -12345,8 +12345,6 @@ export interface Parameter$watchCoreV1NamespacedResourceQuotaList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -12355,6 +12353,8 @@ export interface Parameter$watchCoreV1NamespacedResourceQuotaList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedResourceQuotaList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -12382,10 +12382,6 @@ export interface Parameter$watchCoreV1NamespacedResourceQuota { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the ResourceQuota */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -12394,6 +12390,10 @@ export interface Parameter$watchCoreV1NamespacedResourceQuota { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the ResourceQuota */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedResourceQuota$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -12421,8 +12421,6 @@ export interface Parameter$watchCoreV1NamespacedSecretList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -12431,6 +12429,8 @@ export interface Parameter$watchCoreV1NamespacedSecretList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedSecretList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -12458,10 +12458,6 @@ export interface Parameter$watchCoreV1NamespacedSecret { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the Secret */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -12470,6 +12466,10 @@ export interface Parameter$watchCoreV1NamespacedSecret { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the Secret */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedSecret$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -12497,8 +12497,6 @@ export interface Parameter$watchCoreV1NamespacedServiceAccountList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -12507,6 +12505,8 @@ export interface Parameter$watchCoreV1NamespacedServiceAccountList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedServiceAccountList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -12534,10 +12534,6 @@ export interface Parameter$watchCoreV1NamespacedServiceAccount { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the ServiceAccount */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -12546,6 +12542,10 @@ export interface Parameter$watchCoreV1NamespacedServiceAccount { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the ServiceAccount */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedServiceAccount$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -12573,8 +12573,6 @@ export interface Parameter$watchCoreV1NamespacedServiceList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -12583,6 +12581,8 @@ export interface Parameter$watchCoreV1NamespacedServiceList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedServiceList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -12610,10 +12610,6 @@ export interface Parameter$watchCoreV1NamespacedService { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the Service */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -12622,6 +12618,10 @@ export interface Parameter$watchCoreV1NamespacedService { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the Service */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoreV1NamespacedService$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -12649,8 +12649,6 @@ export interface Parameter$watchCoreV1Namespace { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the Namespace */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -12659,6 +12657,8 @@ export interface Parameter$watchCoreV1Namespace { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the Namespace */ + name: string; } export interface Response$watchCoreV1Namespace$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -12721,8 +12721,6 @@ export interface Parameter$watchCoreV1Node { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the Node */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -12731,6 +12729,8 @@ export interface Parameter$watchCoreV1Node { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the Node */ + name: string; } export interface Response$watchCoreV1Node$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -12828,8 +12828,6 @@ export interface Parameter$watchCoreV1PersistentVolume { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the PersistentVolume */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -12838,6 +12836,8 @@ export interface Parameter$watchCoreV1PersistentVolume { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the PersistentVolume */ + name: string; } export interface Response$watchCoreV1PersistentVolume$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -13208,14 +13208,14 @@ export interface Response$deleteAdmissionregistrationV1CollectionMutatingWebhook "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readAdmissionregistrationV1MutatingWebhookConfiguration { - /** name of the MutatingWebhookConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the MutatingWebhookConfiguration */ + name: string; } export interface Response$readAdmissionregistrationV1MutatingWebhookConfiguration$Status$200 { "application/json": Schemas.io$k8s$api$admissionregistration$v1$MutatingWebhookConfiguration; @@ -13223,14 +13223,14 @@ export interface Response$readAdmissionregistrationV1MutatingWebhookConfiguratio "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1$MutatingWebhookConfiguration; } export interface Parameter$replaceAdmissionregistrationV1MutatingWebhookConfiguration { - /** name of the MutatingWebhookConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the MutatingWebhookConfiguration */ + name: string; } export type RequestBody$replaceAdmissionregistrationV1MutatingWebhookConfiguration = RequestBodies.io$k8s$api$admissionregistration$v1$MutatingWebhookConfiguration.Content; export interface Response$replaceAdmissionregistrationV1MutatingWebhookConfiguration$Status$200 { @@ -13244,8 +13244,6 @@ export interface Response$replaceAdmissionregistrationV1MutatingWebhookConfigura "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1$MutatingWebhookConfiguration; } export interface Parameter$deleteAdmissionregistrationV1MutatingWebhookConfiguration { - /** name of the MutatingWebhookConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -13256,6 +13254,8 @@ export interface Parameter$deleteAdmissionregistrationV1MutatingWebhookConfigura orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the MutatingWebhookConfiguration */ + name: string; } export type RequestBody$deleteAdmissionregistrationV1MutatingWebhookConfiguration = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAdmissionregistrationV1MutatingWebhookConfiguration$Status$200 { @@ -13269,8 +13269,6 @@ export interface Response$deleteAdmissionregistrationV1MutatingWebhookConfigurat "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchAdmissionregistrationV1MutatingWebhookConfiguration { - /** name of the MutatingWebhookConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -13279,6 +13277,8 @@ export interface Parameter$patchAdmissionregistrationV1MutatingWebhookConfigurat fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the MutatingWebhookConfiguration */ + name: string; } export type RequestBody$patchAdmissionregistrationV1MutatingWebhookConfiguration = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAdmissionregistrationV1MutatingWebhookConfiguration$Status$200 { @@ -13388,14 +13388,14 @@ export interface Response$deleteAdmissionregistrationV1CollectionValidatingWebho "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readAdmissionregistrationV1ValidatingWebhookConfiguration { - /** name of the ValidatingWebhookConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the ValidatingWebhookConfiguration */ + name: string; } export interface Response$readAdmissionregistrationV1ValidatingWebhookConfiguration$Status$200 { "application/json": Schemas.io$k8s$api$admissionregistration$v1$ValidatingWebhookConfiguration; @@ -13403,14 +13403,14 @@ export interface Response$readAdmissionregistrationV1ValidatingWebhookConfigurat "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1$ValidatingWebhookConfiguration; } export interface Parameter$replaceAdmissionregistrationV1ValidatingWebhookConfiguration { - /** name of the ValidatingWebhookConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the ValidatingWebhookConfiguration */ + name: string; } export type RequestBody$replaceAdmissionregistrationV1ValidatingWebhookConfiguration = RequestBodies.io$k8s$api$admissionregistration$v1$ValidatingWebhookConfiguration.Content; export interface Response$replaceAdmissionregistrationV1ValidatingWebhookConfiguration$Status$200 { @@ -13424,8 +13424,6 @@ export interface Response$replaceAdmissionregistrationV1ValidatingWebhookConfigu "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1$ValidatingWebhookConfiguration; } export interface Parameter$deleteAdmissionregistrationV1ValidatingWebhookConfiguration { - /** name of the ValidatingWebhookConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -13436,6 +13434,8 @@ export interface Parameter$deleteAdmissionregistrationV1ValidatingWebhookConfigu orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the ValidatingWebhookConfiguration */ + name: string; } export type RequestBody$deleteAdmissionregistrationV1ValidatingWebhookConfiguration = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAdmissionregistrationV1ValidatingWebhookConfiguration$Status$200 { @@ -13449,8 +13449,6 @@ export interface Response$deleteAdmissionregistrationV1ValidatingWebhookConfigur "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchAdmissionregistrationV1ValidatingWebhookConfiguration { - /** name of the ValidatingWebhookConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -13459,6 +13457,8 @@ export interface Parameter$patchAdmissionregistrationV1ValidatingWebhookConfigur fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the ValidatingWebhookConfiguration */ + name: string; } export type RequestBody$patchAdmissionregistrationV1ValidatingWebhookConfiguration = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAdmissionregistrationV1ValidatingWebhookConfiguration$Status$200 { @@ -13520,8 +13520,6 @@ export interface Parameter$watchAdmissionregistrationV1MutatingWebhookConfigurat * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the MutatingWebhookConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -13530,6 +13528,8 @@ export interface Parameter$watchAdmissionregistrationV1MutatingWebhookConfigurat timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the MutatingWebhookConfiguration */ + name: string; } export interface Response$watchAdmissionregistrationV1MutatingWebhookConfiguration$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -13592,8 +13592,6 @@ export interface Parameter$watchAdmissionregistrationV1ValidatingWebhookConfigur * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the ValidatingWebhookConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -13602,6 +13600,8 @@ export interface Parameter$watchAdmissionregistrationV1ValidatingWebhookConfigur timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the ValidatingWebhookConfiguration */ + name: string; } export interface Response$watchAdmissionregistrationV1ValidatingWebhookConfiguration$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -13717,14 +13717,14 @@ export interface Response$deleteAdmissionregistrationV1beta1CollectionMutatingWe "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readAdmissionregistrationV1beta1MutatingWebhookConfiguration { - /** name of the MutatingWebhookConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the MutatingWebhookConfiguration */ + name: string; } export interface Response$readAdmissionregistrationV1beta1MutatingWebhookConfiguration$Status$200 { "application/json": Schemas.io$k8s$api$admissionregistration$v1beta1$MutatingWebhookConfiguration; @@ -13732,14 +13732,14 @@ export interface Response$readAdmissionregistrationV1beta1MutatingWebhookConfigu "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1beta1$MutatingWebhookConfiguration; } export interface Parameter$replaceAdmissionregistrationV1beta1MutatingWebhookConfiguration { - /** name of the MutatingWebhookConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the MutatingWebhookConfiguration */ + name: string; } export type RequestBody$replaceAdmissionregistrationV1beta1MutatingWebhookConfiguration = RequestBodies.io$k8s$api$admissionregistration$v1beta1$MutatingWebhookConfiguration.Content; export interface Response$replaceAdmissionregistrationV1beta1MutatingWebhookConfiguration$Status$200 { @@ -13753,8 +13753,6 @@ export interface Response$replaceAdmissionregistrationV1beta1MutatingWebhookConf "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1beta1$MutatingWebhookConfiguration; } export interface Parameter$deleteAdmissionregistrationV1beta1MutatingWebhookConfiguration { - /** name of the MutatingWebhookConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -13765,6 +13763,8 @@ export interface Parameter$deleteAdmissionregistrationV1beta1MutatingWebhookConf orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the MutatingWebhookConfiguration */ + name: string; } export type RequestBody$deleteAdmissionregistrationV1beta1MutatingWebhookConfiguration = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAdmissionregistrationV1beta1MutatingWebhookConfiguration$Status$200 { @@ -13778,8 +13778,6 @@ export interface Response$deleteAdmissionregistrationV1beta1MutatingWebhookConfi "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchAdmissionregistrationV1beta1MutatingWebhookConfiguration { - /** name of the MutatingWebhookConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -13788,6 +13786,8 @@ export interface Parameter$patchAdmissionregistrationV1beta1MutatingWebhookConfi fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the MutatingWebhookConfiguration */ + name: string; } export type RequestBody$patchAdmissionregistrationV1beta1MutatingWebhookConfiguration = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAdmissionregistrationV1beta1MutatingWebhookConfiguration$Status$200 { @@ -13897,14 +13897,14 @@ export interface Response$deleteAdmissionregistrationV1beta1CollectionValidating "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readAdmissionregistrationV1beta1ValidatingWebhookConfiguration { - /** name of the ValidatingWebhookConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the ValidatingWebhookConfiguration */ + name: string; } export interface Response$readAdmissionregistrationV1beta1ValidatingWebhookConfiguration$Status$200 { "application/json": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingWebhookConfiguration; @@ -13912,14 +13912,14 @@ export interface Response$readAdmissionregistrationV1beta1ValidatingWebhookConfi "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingWebhookConfiguration; } export interface Parameter$replaceAdmissionregistrationV1beta1ValidatingWebhookConfiguration { - /** name of the ValidatingWebhookConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the ValidatingWebhookConfiguration */ + name: string; } export type RequestBody$replaceAdmissionregistrationV1beta1ValidatingWebhookConfiguration = RequestBodies.io$k8s$api$admissionregistration$v1beta1$ValidatingWebhookConfiguration.Content; export interface Response$replaceAdmissionregistrationV1beta1ValidatingWebhookConfiguration$Status$200 { @@ -13933,8 +13933,6 @@ export interface Response$replaceAdmissionregistrationV1beta1ValidatingWebhookCo "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingWebhookConfiguration; } export interface Parameter$deleteAdmissionregistrationV1beta1ValidatingWebhookConfiguration { - /** name of the ValidatingWebhookConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -13945,6 +13943,8 @@ export interface Parameter$deleteAdmissionregistrationV1beta1ValidatingWebhookCo orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the ValidatingWebhookConfiguration */ + name: string; } export type RequestBody$deleteAdmissionregistrationV1beta1ValidatingWebhookConfiguration = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAdmissionregistrationV1beta1ValidatingWebhookConfiguration$Status$200 { @@ -13958,8 +13958,6 @@ export interface Response$deleteAdmissionregistrationV1beta1ValidatingWebhookCon "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchAdmissionregistrationV1beta1ValidatingWebhookConfiguration { - /** name of the ValidatingWebhookConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -13968,6 +13966,8 @@ export interface Parameter$patchAdmissionregistrationV1beta1ValidatingWebhookCon fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the ValidatingWebhookConfiguration */ + name: string; } export type RequestBody$patchAdmissionregistrationV1beta1ValidatingWebhookConfiguration = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAdmissionregistrationV1beta1ValidatingWebhookConfiguration$Status$200 { @@ -14029,8 +14029,6 @@ export interface Parameter$watchAdmissionregistrationV1beta1MutatingWebhookConfi * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the MutatingWebhookConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -14039,6 +14037,8 @@ export interface Parameter$watchAdmissionregistrationV1beta1MutatingWebhookConfi timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the MutatingWebhookConfiguration */ + name: string; } export interface Response$watchAdmissionregistrationV1beta1MutatingWebhookConfiguration$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -14101,8 +14101,6 @@ export interface Parameter$watchAdmissionregistrationV1beta1ValidatingWebhookCon * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the ValidatingWebhookConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -14111,6 +14109,8 @@ export interface Parameter$watchAdmissionregistrationV1beta1ValidatingWebhookCon timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the ValidatingWebhookConfiguration */ + name: string; } export interface Response$watchAdmissionregistrationV1beta1ValidatingWebhookConfiguration$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -14231,14 +14231,14 @@ export interface Response$deleteApiextensionsV1CollectionCustomResourceDefinitio "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readApiextensionsV1CustomResourceDefinition { - /** name of the CustomResourceDefinition */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the CustomResourceDefinition */ + name: string; } export interface Response$readApiextensionsV1CustomResourceDefinition$Status$200 { "application/json": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; @@ -14246,14 +14246,14 @@ export interface Response$readApiextensionsV1CustomResourceDefinition$Status$200 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; } export interface Parameter$replaceApiextensionsV1CustomResourceDefinition { - /** name of the CustomResourceDefinition */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the CustomResourceDefinition */ + name: string; } export type RequestBody$replaceApiextensionsV1CustomResourceDefinition = RequestBodies.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition.Content; export interface Response$replaceApiextensionsV1CustomResourceDefinition$Status$200 { @@ -14267,8 +14267,6 @@ export interface Response$replaceApiextensionsV1CustomResourceDefinition$Status$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; } export interface Parameter$deleteApiextensionsV1CustomResourceDefinition { - /** name of the CustomResourceDefinition */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -14279,6 +14277,8 @@ export interface Parameter$deleteApiextensionsV1CustomResourceDefinition { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the CustomResourceDefinition */ + name: string; } export type RequestBody$deleteApiextensionsV1CustomResourceDefinition = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteApiextensionsV1CustomResourceDefinition$Status$200 { @@ -14292,8 +14292,6 @@ export interface Response$deleteApiextensionsV1CustomResourceDefinition$Status$2 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchApiextensionsV1CustomResourceDefinition { - /** name of the CustomResourceDefinition */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -14302,6 +14300,8 @@ export interface Parameter$patchApiextensionsV1CustomResourceDefinition { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the CustomResourceDefinition */ + name: string; } export type RequestBody$patchApiextensionsV1CustomResourceDefinition = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchApiextensionsV1CustomResourceDefinition$Status$200 { @@ -14310,10 +14310,10 @@ export interface Response$patchApiextensionsV1CustomResourceDefinition$Status$20 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; } export interface Parameter$readApiextensionsV1CustomResourceDefinitionStatus { - /** name of the CustomResourceDefinition */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** name of the CustomResourceDefinition */ + name: string; } export interface Response$readApiextensionsV1CustomResourceDefinitionStatus$Status$200 { "application/json": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; @@ -14321,14 +14321,14 @@ export interface Response$readApiextensionsV1CustomResourceDefinitionStatus$Stat "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; } export interface Parameter$replaceApiextensionsV1CustomResourceDefinitionStatus { - /** name of the CustomResourceDefinition */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the CustomResourceDefinition */ + name: string; } export type RequestBody$replaceApiextensionsV1CustomResourceDefinitionStatus = RequestBodies.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition.Content; export interface Response$replaceApiextensionsV1CustomResourceDefinitionStatus$Status$200 { @@ -14342,8 +14342,6 @@ export interface Response$replaceApiextensionsV1CustomResourceDefinitionStatus$S "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; } export interface Parameter$patchApiextensionsV1CustomResourceDefinitionStatus { - /** name of the CustomResourceDefinition */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -14352,6 +14350,8 @@ export interface Parameter$patchApiextensionsV1CustomResourceDefinitionStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the CustomResourceDefinition */ + name: string; } export type RequestBody$patchApiextensionsV1CustomResourceDefinitionStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchApiextensionsV1CustomResourceDefinitionStatus$Status$200 { @@ -14413,8 +14413,6 @@ export interface Parameter$watchApiextensionsV1CustomResourceDefinition { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the CustomResourceDefinition */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -14423,6 +14421,8 @@ export interface Parameter$watchApiextensionsV1CustomResourceDefinition { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the CustomResourceDefinition */ + name: string; } export interface Response$watchApiextensionsV1CustomResourceDefinition$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -14538,14 +14538,14 @@ export interface Response$deleteApiextensionsV1beta1CollectionCustomResourceDefi "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readApiextensionsV1beta1CustomResourceDefinition { - /** name of the CustomResourceDefinition */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the CustomResourceDefinition */ + name: string; } export interface Response$readApiextensionsV1beta1CustomResourceDefinition$Status$200 { "application/json": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceDefinition; @@ -14553,14 +14553,14 @@ export interface Response$readApiextensionsV1beta1CustomResourceDefinition$Statu "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceDefinition; } export interface Parameter$replaceApiextensionsV1beta1CustomResourceDefinition { - /** name of the CustomResourceDefinition */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the CustomResourceDefinition */ + name: string; } export type RequestBody$replaceApiextensionsV1beta1CustomResourceDefinition = RequestBodies.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceDefinition.Content; export interface Response$replaceApiextensionsV1beta1CustomResourceDefinition$Status$200 { @@ -14574,8 +14574,6 @@ export interface Response$replaceApiextensionsV1beta1CustomResourceDefinition$St "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceDefinition; } export interface Parameter$deleteApiextensionsV1beta1CustomResourceDefinition { - /** name of the CustomResourceDefinition */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -14586,6 +14584,8 @@ export interface Parameter$deleteApiextensionsV1beta1CustomResourceDefinition { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the CustomResourceDefinition */ + name: string; } export type RequestBody$deleteApiextensionsV1beta1CustomResourceDefinition = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteApiextensionsV1beta1CustomResourceDefinition$Status$200 { @@ -14599,8 +14599,6 @@ export interface Response$deleteApiextensionsV1beta1CustomResourceDefinition$Sta "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchApiextensionsV1beta1CustomResourceDefinition { - /** name of the CustomResourceDefinition */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -14609,6 +14607,8 @@ export interface Parameter$patchApiextensionsV1beta1CustomResourceDefinition { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the CustomResourceDefinition */ + name: string; } export type RequestBody$patchApiextensionsV1beta1CustomResourceDefinition = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchApiextensionsV1beta1CustomResourceDefinition$Status$200 { @@ -14617,10 +14617,10 @@ export interface Response$patchApiextensionsV1beta1CustomResourceDefinition$Stat "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceDefinition; } export interface Parameter$readApiextensionsV1beta1CustomResourceDefinitionStatus { - /** name of the CustomResourceDefinition */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** name of the CustomResourceDefinition */ + name: string; } export interface Response$readApiextensionsV1beta1CustomResourceDefinitionStatus$Status$200 { "application/json": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceDefinition; @@ -14628,14 +14628,14 @@ export interface Response$readApiextensionsV1beta1CustomResourceDefinitionStatus "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceDefinition; } export interface Parameter$replaceApiextensionsV1beta1CustomResourceDefinitionStatus { - /** name of the CustomResourceDefinition */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the CustomResourceDefinition */ + name: string; } export type RequestBody$replaceApiextensionsV1beta1CustomResourceDefinitionStatus = RequestBodies.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceDefinition.Content; export interface Response$replaceApiextensionsV1beta1CustomResourceDefinitionStatus$Status$200 { @@ -14649,8 +14649,6 @@ export interface Response$replaceApiextensionsV1beta1CustomResourceDefinitionSta "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceDefinition; } export interface Parameter$patchApiextensionsV1beta1CustomResourceDefinitionStatus { - /** name of the CustomResourceDefinition */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -14659,6 +14657,8 @@ export interface Parameter$patchApiextensionsV1beta1CustomResourceDefinitionStat fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the CustomResourceDefinition */ + name: string; } export type RequestBody$patchApiextensionsV1beta1CustomResourceDefinitionStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchApiextensionsV1beta1CustomResourceDefinitionStatus$Status$200 { @@ -14720,8 +14720,6 @@ export interface Parameter$watchApiextensionsV1beta1CustomResourceDefinition { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the CustomResourceDefinition */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -14730,6 +14728,8 @@ export interface Parameter$watchApiextensionsV1beta1CustomResourceDefinition { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the CustomResourceDefinition */ + name: string; } export interface Response$watchApiextensionsV1beta1CustomResourceDefinition$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -14850,14 +14850,14 @@ export interface Response$deleteApiregistrationV1CollectionAPIService$Status$200 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readApiregistrationV1APIService { - /** name of the APIService */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the APIService */ + name: string; } export interface Response$readApiregistrationV1APIService$Status$200 { "application/json": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; @@ -14865,14 +14865,14 @@ export interface Response$readApiregistrationV1APIService$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; } export interface Parameter$replaceApiregistrationV1APIService { - /** name of the APIService */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the APIService */ + name: string; } export type RequestBody$replaceApiregistrationV1APIService = RequestBodies.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService.Content; export interface Response$replaceApiregistrationV1APIService$Status$200 { @@ -14886,8 +14886,6 @@ export interface Response$replaceApiregistrationV1APIService$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; } export interface Parameter$deleteApiregistrationV1APIService { - /** name of the APIService */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -14898,6 +14896,8 @@ export interface Parameter$deleteApiregistrationV1APIService { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the APIService */ + name: string; } export type RequestBody$deleteApiregistrationV1APIService = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteApiregistrationV1APIService$Status$200 { @@ -14911,8 +14911,6 @@ export interface Response$deleteApiregistrationV1APIService$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchApiregistrationV1APIService { - /** name of the APIService */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -14921,6 +14919,8 @@ export interface Parameter$patchApiregistrationV1APIService { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the APIService */ + name: string; } export type RequestBody$patchApiregistrationV1APIService = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchApiregistrationV1APIService$Status$200 { @@ -14929,10 +14929,10 @@ export interface Response$patchApiregistrationV1APIService$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; } export interface Parameter$readApiregistrationV1APIServiceStatus { - /** name of the APIService */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** name of the APIService */ + name: string; } export interface Response$readApiregistrationV1APIServiceStatus$Status$200 { "application/json": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; @@ -14940,14 +14940,14 @@ export interface Response$readApiregistrationV1APIServiceStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; } export interface Parameter$replaceApiregistrationV1APIServiceStatus { - /** name of the APIService */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the APIService */ + name: string; } export type RequestBody$replaceApiregistrationV1APIServiceStatus = RequestBodies.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService.Content; export interface Response$replaceApiregistrationV1APIServiceStatus$Status$200 { @@ -14961,8 +14961,6 @@ export interface Response$replaceApiregistrationV1APIServiceStatus$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; } export interface Parameter$patchApiregistrationV1APIServiceStatus { - /** name of the APIService */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -14971,6 +14969,8 @@ export interface Parameter$patchApiregistrationV1APIServiceStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the APIService */ + name: string; } export type RequestBody$patchApiregistrationV1APIServiceStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchApiregistrationV1APIServiceStatus$Status$200 { @@ -15032,8 +15032,6 @@ export interface Parameter$watchApiregistrationV1APIService { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the APIService */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -15042,6 +15040,8 @@ export interface Parameter$watchApiregistrationV1APIService { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the APIService */ + name: string; } export interface Response$watchApiregistrationV1APIService$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -15157,14 +15157,14 @@ export interface Response$deleteApiregistrationV1beta1CollectionAPIService$Statu "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readApiregistrationV1beta1APIService { - /** name of the APIService */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the APIService */ + name: string; } export interface Response$readApiregistrationV1beta1APIService$Status$200 { "application/json": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1beta1$APIService; @@ -15172,14 +15172,14 @@ export interface Response$readApiregistrationV1beta1APIService$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1beta1$APIService; } export interface Parameter$replaceApiregistrationV1beta1APIService { - /** name of the APIService */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the APIService */ + name: string; } export type RequestBody$replaceApiregistrationV1beta1APIService = RequestBodies.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1beta1$APIService.Content; export interface Response$replaceApiregistrationV1beta1APIService$Status$200 { @@ -15193,8 +15193,6 @@ export interface Response$replaceApiregistrationV1beta1APIService$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1beta1$APIService; } export interface Parameter$deleteApiregistrationV1beta1APIService { - /** name of the APIService */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -15205,6 +15203,8 @@ export interface Parameter$deleteApiregistrationV1beta1APIService { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the APIService */ + name: string; } export type RequestBody$deleteApiregistrationV1beta1APIService = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteApiregistrationV1beta1APIService$Status$200 { @@ -15218,8 +15218,6 @@ export interface Response$deleteApiregistrationV1beta1APIService$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchApiregistrationV1beta1APIService { - /** name of the APIService */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -15228,6 +15226,8 @@ export interface Parameter$patchApiregistrationV1beta1APIService { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the APIService */ + name: string; } export type RequestBody$patchApiregistrationV1beta1APIService = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchApiregistrationV1beta1APIService$Status$200 { @@ -15236,10 +15236,10 @@ export interface Response$patchApiregistrationV1beta1APIService$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1beta1$APIService; } export interface Parameter$readApiregistrationV1beta1APIServiceStatus { - /** name of the APIService */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** name of the APIService */ + name: string; } export interface Response$readApiregistrationV1beta1APIServiceStatus$Status$200 { "application/json": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1beta1$APIService; @@ -15247,14 +15247,14 @@ export interface Response$readApiregistrationV1beta1APIServiceStatus$Status$200 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1beta1$APIService; } export interface Parameter$replaceApiregistrationV1beta1APIServiceStatus { - /** name of the APIService */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the APIService */ + name: string; } export type RequestBody$replaceApiregistrationV1beta1APIServiceStatus = RequestBodies.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1beta1$APIService.Content; export interface Response$replaceApiregistrationV1beta1APIServiceStatus$Status$200 { @@ -15268,8 +15268,6 @@ export interface Response$replaceApiregistrationV1beta1APIServiceStatus$Status$2 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1beta1$APIService; } export interface Parameter$patchApiregistrationV1beta1APIServiceStatus { - /** name of the APIService */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -15278,6 +15276,8 @@ export interface Parameter$patchApiregistrationV1beta1APIServiceStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the APIService */ + name: string; } export type RequestBody$patchApiregistrationV1beta1APIServiceStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchApiregistrationV1beta1APIServiceStatus$Status$200 { @@ -15339,8 +15339,6 @@ export interface Parameter$watchApiregistrationV1beta1APIService { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the APIService */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -15349,6 +15347,8 @@ export interface Parameter$watchApiregistrationV1beta1APIService { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the APIService */ + name: string; } export interface Response$watchApiregistrationV1beta1APIService$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -15473,8 +15473,6 @@ export interface Response$listAppsV1DeploymentForAllNamespaces$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$apps$v1$DeploymentList; } export interface Parameter$listAppsV1NamespacedControllerRevision { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -15501,6 +15499,8 @@ export interface Parameter$listAppsV1NamespacedControllerRevision { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listAppsV1NamespacedControllerRevision$Status$200 { "application/json": Schemas.io$k8s$api$apps$v1$ControllerRevisionList; @@ -15510,14 +15510,14 @@ export interface Response$listAppsV1NamespacedControllerRevision$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$apps$v1$ControllerRevisionList; } export interface Parameter$createAppsV1NamespacedControllerRevision { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createAppsV1NamespacedControllerRevision = RequestBodies.io$k8s$api$apps$v1$ControllerRevision.Content; export interface Response$createAppsV1NamespacedControllerRevision$Status$200 { @@ -15536,8 +15536,6 @@ export interface Response$createAppsV1NamespacedControllerRevision$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ControllerRevision; } export interface Parameter$deleteAppsV1CollectionNamespacedControllerRevision { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -15572,6 +15570,8 @@ export interface Parameter$deleteAppsV1CollectionNamespacedControllerRevision { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteAppsV1CollectionNamespacedControllerRevision = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAppsV1CollectionNamespacedControllerRevision$Status$200 { @@ -15580,16 +15580,16 @@ export interface Response$deleteAppsV1CollectionNamespacedControllerRevision$Sta "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readAppsV1NamespacedControllerRevision { - /** name of the ControllerRevision */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the ControllerRevision */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readAppsV1NamespacedControllerRevision$Status$200 { "application/json": Schemas.io$k8s$api$apps$v1$ControllerRevision; @@ -15597,16 +15597,16 @@ export interface Response$readAppsV1NamespacedControllerRevision$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ControllerRevision; } export interface Parameter$replaceAppsV1NamespacedControllerRevision { - /** name of the ControllerRevision */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the ControllerRevision */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceAppsV1NamespacedControllerRevision = RequestBodies.io$k8s$api$apps$v1$ControllerRevision.Content; export interface Response$replaceAppsV1NamespacedControllerRevision$Status$200 { @@ -15620,10 +15620,6 @@ export interface Response$replaceAppsV1NamespacedControllerRevision$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ControllerRevision; } export interface Parameter$deleteAppsV1NamespacedControllerRevision { - /** name of the ControllerRevision */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -15634,6 +15630,10 @@ export interface Parameter$deleteAppsV1NamespacedControllerRevision { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the ControllerRevision */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteAppsV1NamespacedControllerRevision = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAppsV1NamespacedControllerRevision$Status$200 { @@ -15647,10 +15647,6 @@ export interface Response$deleteAppsV1NamespacedControllerRevision$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchAppsV1NamespacedControllerRevision { - /** name of the ControllerRevision */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -15659,6 +15655,10 @@ export interface Parameter$patchAppsV1NamespacedControllerRevision { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the ControllerRevision */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchAppsV1NamespacedControllerRevision = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAppsV1NamespacedControllerRevision$Status$200 { @@ -15667,8 +15667,6 @@ export interface Response$patchAppsV1NamespacedControllerRevision$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ControllerRevision; } export interface Parameter$listAppsV1NamespacedDaemonSet { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -15695,6 +15693,8 @@ export interface Parameter$listAppsV1NamespacedDaemonSet { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listAppsV1NamespacedDaemonSet$Status$200 { "application/json": Schemas.io$k8s$api$apps$v1$DaemonSetList; @@ -15704,14 +15704,14 @@ export interface Response$listAppsV1NamespacedDaemonSet$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$apps$v1$DaemonSetList; } export interface Parameter$createAppsV1NamespacedDaemonSet { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createAppsV1NamespacedDaemonSet = RequestBodies.io$k8s$api$apps$v1$DaemonSet.Content; export interface Response$createAppsV1NamespacedDaemonSet$Status$200 { @@ -15730,8 +15730,6 @@ export interface Response$createAppsV1NamespacedDaemonSet$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$DaemonSet; } export interface Parameter$deleteAppsV1CollectionNamespacedDaemonSet { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -15766,6 +15764,8 @@ export interface Parameter$deleteAppsV1CollectionNamespacedDaemonSet { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteAppsV1CollectionNamespacedDaemonSet = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAppsV1CollectionNamespacedDaemonSet$Status$200 { @@ -15774,16 +15774,16 @@ export interface Response$deleteAppsV1CollectionNamespacedDaemonSet$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readAppsV1NamespacedDaemonSet { - /** name of the DaemonSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the DaemonSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readAppsV1NamespacedDaemonSet$Status$200 { "application/json": Schemas.io$k8s$api$apps$v1$DaemonSet; @@ -15791,16 +15791,16 @@ export interface Response$readAppsV1NamespacedDaemonSet$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$DaemonSet; } export interface Parameter$replaceAppsV1NamespacedDaemonSet { - /** name of the DaemonSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the DaemonSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceAppsV1NamespacedDaemonSet = RequestBodies.io$k8s$api$apps$v1$DaemonSet.Content; export interface Response$replaceAppsV1NamespacedDaemonSet$Status$200 { @@ -15814,10 +15814,6 @@ export interface Response$replaceAppsV1NamespacedDaemonSet$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$DaemonSet; } export interface Parameter$deleteAppsV1NamespacedDaemonSet { - /** name of the DaemonSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -15828,6 +15824,10 @@ export interface Parameter$deleteAppsV1NamespacedDaemonSet { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the DaemonSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteAppsV1NamespacedDaemonSet = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAppsV1NamespacedDaemonSet$Status$200 { @@ -15841,10 +15841,6 @@ export interface Response$deleteAppsV1NamespacedDaemonSet$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchAppsV1NamespacedDaemonSet { - /** name of the DaemonSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -15853,6 +15849,10 @@ export interface Parameter$patchAppsV1NamespacedDaemonSet { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the DaemonSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchAppsV1NamespacedDaemonSet = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAppsV1NamespacedDaemonSet$Status$200 { @@ -15861,12 +15861,12 @@ export interface Response$patchAppsV1NamespacedDaemonSet$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$DaemonSet; } export interface Parameter$readAppsV1NamespacedDaemonSetStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the DaemonSet */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readAppsV1NamespacedDaemonSetStatus$Status$200 { "application/json": Schemas.io$k8s$api$apps$v1$DaemonSet; @@ -15874,16 +15874,16 @@ export interface Response$readAppsV1NamespacedDaemonSetStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$DaemonSet; } export interface Parameter$replaceAppsV1NamespacedDaemonSetStatus { - /** name of the DaemonSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the DaemonSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceAppsV1NamespacedDaemonSetStatus = RequestBodies.io$k8s$api$apps$v1$DaemonSet.Content; export interface Response$replaceAppsV1NamespacedDaemonSetStatus$Status$200 { @@ -15897,10 +15897,6 @@ export interface Response$replaceAppsV1NamespacedDaemonSetStatus$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$DaemonSet; } export interface Parameter$patchAppsV1NamespacedDaemonSetStatus { - /** name of the DaemonSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -15909,6 +15905,10 @@ export interface Parameter$patchAppsV1NamespacedDaemonSetStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the DaemonSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchAppsV1NamespacedDaemonSetStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAppsV1NamespacedDaemonSetStatus$Status$200 { @@ -15917,8 +15917,6 @@ export interface Response$patchAppsV1NamespacedDaemonSetStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$DaemonSet; } export interface Parameter$listAppsV1NamespacedDeployment { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -15945,6 +15943,8 @@ export interface Parameter$listAppsV1NamespacedDeployment { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listAppsV1NamespacedDeployment$Status$200 { "application/json": Schemas.io$k8s$api$apps$v1$DeploymentList; @@ -15954,14 +15954,14 @@ export interface Response$listAppsV1NamespacedDeployment$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$apps$v1$DeploymentList; } export interface Parameter$createAppsV1NamespacedDeployment { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createAppsV1NamespacedDeployment = RequestBodies.io$k8s$api$apps$v1$Deployment.Content; export interface Response$createAppsV1NamespacedDeployment$Status$200 { @@ -15980,8 +15980,6 @@ export interface Response$createAppsV1NamespacedDeployment$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$Deployment; } export interface Parameter$deleteAppsV1CollectionNamespacedDeployment { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -16016,6 +16014,8 @@ export interface Parameter$deleteAppsV1CollectionNamespacedDeployment { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteAppsV1CollectionNamespacedDeployment = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAppsV1CollectionNamespacedDeployment$Status$200 { @@ -16024,16 +16024,16 @@ export interface Response$deleteAppsV1CollectionNamespacedDeployment$Status$200 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readAppsV1NamespacedDeployment { - /** name of the Deployment */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the Deployment */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readAppsV1NamespacedDeployment$Status$200 { "application/json": Schemas.io$k8s$api$apps$v1$Deployment; @@ -16041,16 +16041,16 @@ export interface Response$readAppsV1NamespacedDeployment$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$Deployment; } export interface Parameter$replaceAppsV1NamespacedDeployment { - /** name of the Deployment */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Deployment */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceAppsV1NamespacedDeployment = RequestBodies.io$k8s$api$apps$v1$Deployment.Content; export interface Response$replaceAppsV1NamespacedDeployment$Status$200 { @@ -16064,10 +16064,6 @@ export interface Response$replaceAppsV1NamespacedDeployment$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$Deployment; } export interface Parameter$deleteAppsV1NamespacedDeployment { - /** name of the Deployment */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -16078,6 +16074,10 @@ export interface Parameter$deleteAppsV1NamespacedDeployment { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the Deployment */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteAppsV1NamespacedDeployment = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAppsV1NamespacedDeployment$Status$200 { @@ -16091,10 +16091,6 @@ export interface Response$deleteAppsV1NamespacedDeployment$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchAppsV1NamespacedDeployment { - /** name of the Deployment */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -16103,6 +16099,10 @@ export interface Parameter$patchAppsV1NamespacedDeployment { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Deployment */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchAppsV1NamespacedDeployment = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAppsV1NamespacedDeployment$Status$200 { @@ -16111,12 +16111,12 @@ export interface Response$patchAppsV1NamespacedDeployment$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$Deployment; } export interface Parameter$readAppsV1NamespacedDeploymentScale { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the Scale */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readAppsV1NamespacedDeploymentScale$Status$200 { "application/json": Schemas.io$k8s$api$autoscaling$v1$Scale; @@ -16124,16 +16124,16 @@ export interface Response$readAppsV1NamespacedDeploymentScale$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; } export interface Parameter$replaceAppsV1NamespacedDeploymentScale { - /** name of the Scale */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Scale */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceAppsV1NamespacedDeploymentScale = RequestBodies.io$k8s$api$autoscaling$v1$Scale.Content; export interface Response$replaceAppsV1NamespacedDeploymentScale$Status$200 { @@ -16147,10 +16147,6 @@ export interface Response$replaceAppsV1NamespacedDeploymentScale$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; } export interface Parameter$patchAppsV1NamespacedDeploymentScale { - /** name of the Scale */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -16159,6 +16155,10 @@ export interface Parameter$patchAppsV1NamespacedDeploymentScale { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Scale */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchAppsV1NamespacedDeploymentScale = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAppsV1NamespacedDeploymentScale$Status$200 { @@ -16167,12 +16167,12 @@ export interface Response$patchAppsV1NamespacedDeploymentScale$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; } export interface Parameter$readAppsV1NamespacedDeploymentStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the Deployment */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readAppsV1NamespacedDeploymentStatus$Status$200 { "application/json": Schemas.io$k8s$api$apps$v1$Deployment; @@ -16180,16 +16180,16 @@ export interface Response$readAppsV1NamespacedDeploymentStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$Deployment; } export interface Parameter$replaceAppsV1NamespacedDeploymentStatus { - /** name of the Deployment */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Deployment */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceAppsV1NamespacedDeploymentStatus = RequestBodies.io$k8s$api$apps$v1$Deployment.Content; export interface Response$replaceAppsV1NamespacedDeploymentStatus$Status$200 { @@ -16203,10 +16203,6 @@ export interface Response$replaceAppsV1NamespacedDeploymentStatus$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$Deployment; } export interface Parameter$patchAppsV1NamespacedDeploymentStatus { - /** name of the Deployment */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -16215,6 +16211,10 @@ export interface Parameter$patchAppsV1NamespacedDeploymentStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Deployment */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchAppsV1NamespacedDeploymentStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAppsV1NamespacedDeploymentStatus$Status$200 { @@ -16223,8 +16223,6 @@ export interface Response$patchAppsV1NamespacedDeploymentStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$Deployment; } export interface Parameter$listAppsV1NamespacedReplicaSet { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -16251,6 +16249,8 @@ export interface Parameter$listAppsV1NamespacedReplicaSet { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listAppsV1NamespacedReplicaSet$Status$200 { "application/json": Schemas.io$k8s$api$apps$v1$ReplicaSetList; @@ -16260,14 +16260,14 @@ export interface Response$listAppsV1NamespacedReplicaSet$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$apps$v1$ReplicaSetList; } export interface Parameter$createAppsV1NamespacedReplicaSet { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createAppsV1NamespacedReplicaSet = RequestBodies.io$k8s$api$apps$v1$ReplicaSet.Content; export interface Response$createAppsV1NamespacedReplicaSet$Status$200 { @@ -16286,8 +16286,6 @@ export interface Response$createAppsV1NamespacedReplicaSet$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ReplicaSet; } export interface Parameter$deleteAppsV1CollectionNamespacedReplicaSet { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -16322,6 +16320,8 @@ export interface Parameter$deleteAppsV1CollectionNamespacedReplicaSet { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteAppsV1CollectionNamespacedReplicaSet = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAppsV1CollectionNamespacedReplicaSet$Status$200 { @@ -16330,16 +16330,16 @@ export interface Response$deleteAppsV1CollectionNamespacedReplicaSet$Status$200 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readAppsV1NamespacedReplicaSet { - /** name of the ReplicaSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the ReplicaSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readAppsV1NamespacedReplicaSet$Status$200 { "application/json": Schemas.io$k8s$api$apps$v1$ReplicaSet; @@ -16347,16 +16347,16 @@ export interface Response$readAppsV1NamespacedReplicaSet$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ReplicaSet; } export interface Parameter$replaceAppsV1NamespacedReplicaSet { - /** name of the ReplicaSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the ReplicaSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceAppsV1NamespacedReplicaSet = RequestBodies.io$k8s$api$apps$v1$ReplicaSet.Content; export interface Response$replaceAppsV1NamespacedReplicaSet$Status$200 { @@ -16370,10 +16370,6 @@ export interface Response$replaceAppsV1NamespacedReplicaSet$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ReplicaSet; } export interface Parameter$deleteAppsV1NamespacedReplicaSet { - /** name of the ReplicaSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -16384,6 +16380,10 @@ export interface Parameter$deleteAppsV1NamespacedReplicaSet { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the ReplicaSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteAppsV1NamespacedReplicaSet = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAppsV1NamespacedReplicaSet$Status$200 { @@ -16397,10 +16397,6 @@ export interface Response$deleteAppsV1NamespacedReplicaSet$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchAppsV1NamespacedReplicaSet { - /** name of the ReplicaSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -16409,6 +16405,10 @@ export interface Parameter$patchAppsV1NamespacedReplicaSet { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the ReplicaSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchAppsV1NamespacedReplicaSet = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAppsV1NamespacedReplicaSet$Status$200 { @@ -16417,12 +16417,12 @@ export interface Response$patchAppsV1NamespacedReplicaSet$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ReplicaSet; } export interface Parameter$readAppsV1NamespacedReplicaSetScale { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the Scale */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readAppsV1NamespacedReplicaSetScale$Status$200 { "application/json": Schemas.io$k8s$api$autoscaling$v1$Scale; @@ -16430,16 +16430,16 @@ export interface Response$readAppsV1NamespacedReplicaSetScale$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; } export interface Parameter$replaceAppsV1NamespacedReplicaSetScale { - /** name of the Scale */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Scale */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceAppsV1NamespacedReplicaSetScale = RequestBodies.io$k8s$api$autoscaling$v1$Scale.Content; export interface Response$replaceAppsV1NamespacedReplicaSetScale$Status$200 { @@ -16453,10 +16453,6 @@ export interface Response$replaceAppsV1NamespacedReplicaSetScale$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; } export interface Parameter$patchAppsV1NamespacedReplicaSetScale { - /** name of the Scale */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -16465,6 +16461,10 @@ export interface Parameter$patchAppsV1NamespacedReplicaSetScale { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Scale */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchAppsV1NamespacedReplicaSetScale = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAppsV1NamespacedReplicaSetScale$Status$200 { @@ -16473,12 +16473,12 @@ export interface Response$patchAppsV1NamespacedReplicaSetScale$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; } export interface Parameter$readAppsV1NamespacedReplicaSetStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the ReplicaSet */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readAppsV1NamespacedReplicaSetStatus$Status$200 { "application/json": Schemas.io$k8s$api$apps$v1$ReplicaSet; @@ -16486,16 +16486,16 @@ export interface Response$readAppsV1NamespacedReplicaSetStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ReplicaSet; } export interface Parameter$replaceAppsV1NamespacedReplicaSetStatus { - /** name of the ReplicaSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the ReplicaSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceAppsV1NamespacedReplicaSetStatus = RequestBodies.io$k8s$api$apps$v1$ReplicaSet.Content; export interface Response$replaceAppsV1NamespacedReplicaSetStatus$Status$200 { @@ -16509,10 +16509,6 @@ export interface Response$replaceAppsV1NamespacedReplicaSetStatus$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ReplicaSet; } export interface Parameter$patchAppsV1NamespacedReplicaSetStatus { - /** name of the ReplicaSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -16521,6 +16517,10 @@ export interface Parameter$patchAppsV1NamespacedReplicaSetStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the ReplicaSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchAppsV1NamespacedReplicaSetStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAppsV1NamespacedReplicaSetStatus$Status$200 { @@ -16529,8 +16529,6 @@ export interface Response$patchAppsV1NamespacedReplicaSetStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ReplicaSet; } export interface Parameter$listAppsV1NamespacedStatefulSet { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -16557,6 +16555,8 @@ export interface Parameter$listAppsV1NamespacedStatefulSet { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listAppsV1NamespacedStatefulSet$Status$200 { "application/json": Schemas.io$k8s$api$apps$v1$StatefulSetList; @@ -16566,14 +16566,14 @@ export interface Response$listAppsV1NamespacedStatefulSet$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$apps$v1$StatefulSetList; } export interface Parameter$createAppsV1NamespacedStatefulSet { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createAppsV1NamespacedStatefulSet = RequestBodies.io$k8s$api$apps$v1$StatefulSet.Content; export interface Response$createAppsV1NamespacedStatefulSet$Status$200 { @@ -16592,8 +16592,6 @@ export interface Response$createAppsV1NamespacedStatefulSet$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$StatefulSet; } export interface Parameter$deleteAppsV1CollectionNamespacedStatefulSet { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -16628,6 +16626,8 @@ export interface Parameter$deleteAppsV1CollectionNamespacedStatefulSet { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteAppsV1CollectionNamespacedStatefulSet = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAppsV1CollectionNamespacedStatefulSet$Status$200 { @@ -16636,16 +16636,16 @@ export interface Response$deleteAppsV1CollectionNamespacedStatefulSet$Status$200 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readAppsV1NamespacedStatefulSet { - /** name of the StatefulSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the StatefulSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readAppsV1NamespacedStatefulSet$Status$200 { "application/json": Schemas.io$k8s$api$apps$v1$StatefulSet; @@ -16653,16 +16653,16 @@ export interface Response$readAppsV1NamespacedStatefulSet$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$StatefulSet; } export interface Parameter$replaceAppsV1NamespacedStatefulSet { - /** name of the StatefulSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the StatefulSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceAppsV1NamespacedStatefulSet = RequestBodies.io$k8s$api$apps$v1$StatefulSet.Content; export interface Response$replaceAppsV1NamespacedStatefulSet$Status$200 { @@ -16676,10 +16676,6 @@ export interface Response$replaceAppsV1NamespacedStatefulSet$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$StatefulSet; } export interface Parameter$deleteAppsV1NamespacedStatefulSet { - /** name of the StatefulSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -16690,6 +16686,10 @@ export interface Parameter$deleteAppsV1NamespacedStatefulSet { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the StatefulSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteAppsV1NamespacedStatefulSet = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAppsV1NamespacedStatefulSet$Status$200 { @@ -16703,10 +16703,6 @@ export interface Response$deleteAppsV1NamespacedStatefulSet$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchAppsV1NamespacedStatefulSet { - /** name of the StatefulSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -16715,6 +16711,10 @@ export interface Parameter$patchAppsV1NamespacedStatefulSet { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the StatefulSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchAppsV1NamespacedStatefulSet = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAppsV1NamespacedStatefulSet$Status$200 { @@ -16723,12 +16723,12 @@ export interface Response$patchAppsV1NamespacedStatefulSet$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$StatefulSet; } export interface Parameter$readAppsV1NamespacedStatefulSetScale { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the Scale */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readAppsV1NamespacedStatefulSetScale$Status$200 { "application/json": Schemas.io$k8s$api$autoscaling$v1$Scale; @@ -16736,16 +16736,16 @@ export interface Response$readAppsV1NamespacedStatefulSetScale$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; } export interface Parameter$replaceAppsV1NamespacedStatefulSetScale { - /** name of the Scale */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Scale */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceAppsV1NamespacedStatefulSetScale = RequestBodies.io$k8s$api$autoscaling$v1$Scale.Content; export interface Response$replaceAppsV1NamespacedStatefulSetScale$Status$200 { @@ -16759,10 +16759,6 @@ export interface Response$replaceAppsV1NamespacedStatefulSetScale$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; } export interface Parameter$patchAppsV1NamespacedStatefulSetScale { - /** name of the Scale */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -16771,6 +16767,10 @@ export interface Parameter$patchAppsV1NamespacedStatefulSetScale { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Scale */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchAppsV1NamespacedStatefulSetScale = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAppsV1NamespacedStatefulSetScale$Status$200 { @@ -16779,12 +16779,12 @@ export interface Response$patchAppsV1NamespacedStatefulSetScale$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; } export interface Parameter$readAppsV1NamespacedStatefulSetStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the StatefulSet */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readAppsV1NamespacedStatefulSetStatus$Status$200 { "application/json": Schemas.io$k8s$api$apps$v1$StatefulSet; @@ -16792,16 +16792,16 @@ export interface Response$readAppsV1NamespacedStatefulSetStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$StatefulSet; } export interface Parameter$replaceAppsV1NamespacedStatefulSetStatus { - /** name of the StatefulSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the StatefulSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceAppsV1NamespacedStatefulSetStatus = RequestBodies.io$k8s$api$apps$v1$StatefulSet.Content; export interface Response$replaceAppsV1NamespacedStatefulSetStatus$Status$200 { @@ -16815,10 +16815,6 @@ export interface Response$replaceAppsV1NamespacedStatefulSetStatus$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$StatefulSet; } export interface Parameter$patchAppsV1NamespacedStatefulSetStatus { - /** name of the StatefulSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -16827,6 +16823,10 @@ export interface Parameter$patchAppsV1NamespacedStatefulSetStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the StatefulSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchAppsV1NamespacedStatefulSetStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAppsV1NamespacedStatefulSetStatus$Status$200 { @@ -17028,8 +17028,6 @@ export interface Parameter$watchAppsV1NamespacedControllerRevisionList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -17038,6 +17036,8 @@ export interface Parameter$watchAppsV1NamespacedControllerRevisionList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchAppsV1NamespacedControllerRevisionList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -17065,10 +17065,6 @@ export interface Parameter$watchAppsV1NamespacedControllerRevision { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the ControllerRevision */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -17077,6 +17073,10 @@ export interface Parameter$watchAppsV1NamespacedControllerRevision { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the ControllerRevision */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchAppsV1NamespacedControllerRevision$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -17104,8 +17104,6 @@ export interface Parameter$watchAppsV1NamespacedDaemonSetList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -17114,6 +17112,8 @@ export interface Parameter$watchAppsV1NamespacedDaemonSetList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchAppsV1NamespacedDaemonSetList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -17141,10 +17141,6 @@ export interface Parameter$watchAppsV1NamespacedDaemonSet { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the DaemonSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -17153,6 +17149,10 @@ export interface Parameter$watchAppsV1NamespacedDaemonSet { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the DaemonSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchAppsV1NamespacedDaemonSet$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -17180,8 +17180,6 @@ export interface Parameter$watchAppsV1NamespacedDeploymentList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -17190,6 +17188,8 @@ export interface Parameter$watchAppsV1NamespacedDeploymentList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchAppsV1NamespacedDeploymentList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -17217,10 +17217,6 @@ export interface Parameter$watchAppsV1NamespacedDeployment { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the Deployment */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -17229,6 +17225,10 @@ export interface Parameter$watchAppsV1NamespacedDeployment { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the Deployment */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchAppsV1NamespacedDeployment$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -17256,8 +17256,6 @@ export interface Parameter$watchAppsV1NamespacedReplicaSetList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -17266,6 +17264,8 @@ export interface Parameter$watchAppsV1NamespacedReplicaSetList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchAppsV1NamespacedReplicaSetList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -17293,10 +17293,6 @@ export interface Parameter$watchAppsV1NamespacedReplicaSet { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the ReplicaSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -17305,6 +17301,10 @@ export interface Parameter$watchAppsV1NamespacedReplicaSet { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the ReplicaSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchAppsV1NamespacedReplicaSet$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -17332,8 +17332,6 @@ export interface Parameter$watchAppsV1NamespacedStatefulSetList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -17342,6 +17340,8 @@ export interface Parameter$watchAppsV1NamespacedStatefulSetList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchAppsV1NamespacedStatefulSetList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -17369,10 +17369,6 @@ export interface Parameter$watchAppsV1NamespacedStatefulSet { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the StatefulSet */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -17381,6 +17377,10 @@ export interface Parameter$watchAppsV1NamespacedStatefulSet { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the StatefulSet */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchAppsV1NamespacedStatefulSet$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -17571,14 +17571,14 @@ export interface Response$deleteAuditregistrationV1alpha1CollectionAuditSink$Sta "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readAuditregistrationV1alpha1AuditSink { - /** name of the AuditSink */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the AuditSink */ + name: string; } export interface Response$readAuditregistrationV1alpha1AuditSink$Status$200 { "application/json": Schemas.io$k8s$api$auditregistration$v1alpha1$AuditSink; @@ -17586,14 +17586,14 @@ export interface Response$readAuditregistrationV1alpha1AuditSink$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$auditregistration$v1alpha1$AuditSink; } export interface Parameter$replaceAuditregistrationV1alpha1AuditSink { - /** name of the AuditSink */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the AuditSink */ + name: string; } export type RequestBody$replaceAuditregistrationV1alpha1AuditSink = RequestBodies.io$k8s$api$auditregistration$v1alpha1$AuditSink.Content; export interface Response$replaceAuditregistrationV1alpha1AuditSink$Status$200 { @@ -17607,8 +17607,6 @@ export interface Response$replaceAuditregistrationV1alpha1AuditSink$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$auditregistration$v1alpha1$AuditSink; } export interface Parameter$deleteAuditregistrationV1alpha1AuditSink { - /** name of the AuditSink */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -17619,6 +17617,8 @@ export interface Parameter$deleteAuditregistrationV1alpha1AuditSink { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the AuditSink */ + name: string; } export type RequestBody$deleteAuditregistrationV1alpha1AuditSink = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAuditregistrationV1alpha1AuditSink$Status$200 { @@ -17632,8 +17632,6 @@ export interface Response$deleteAuditregistrationV1alpha1AuditSink$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchAuditregistrationV1alpha1AuditSink { - /** name of the AuditSink */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -17642,6 +17640,8 @@ export interface Parameter$patchAuditregistrationV1alpha1AuditSink { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the AuditSink */ + name: string; } export type RequestBody$patchAuditregistrationV1alpha1AuditSink = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAuditregistrationV1alpha1AuditSink$Status$200 { @@ -17703,8 +17703,6 @@ export interface Parameter$watchAuditregistrationV1alpha1AuditSink { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the AuditSink */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -17713,6 +17711,8 @@ export interface Parameter$watchAuditregistrationV1alpha1AuditSink { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the AuditSink */ + name: string; } export interface Response$watchAuditregistrationV1alpha1AuditSink$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -17803,10 +17803,10 @@ export interface Parameter$createAuthorizationV1NamespacedLocalSubjectAccessRevi dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface RequestBody$createAuthorizationV1NamespacedLocalSubjectAccessReview { "*/*": Schemas.io$k8s$api$authorization$v1$LocalSubjectAccessReview; @@ -17914,10 +17914,10 @@ export interface Parameter$createAuthorizationV1beta1NamespacedLocalSubjectAcces dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface RequestBody$createAuthorizationV1beta1NamespacedLocalSubjectAccessReview { "*/*": Schemas.io$k8s$api$authorization$v1beta1$LocalSubjectAccessReview; @@ -18061,8 +18061,6 @@ export interface Response$listAutoscalingV1HorizontalPodAutoscalerForAllNamespac "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscalerList; } export interface Parameter$listAutoscalingV1NamespacedHorizontalPodAutoscaler { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -18089,6 +18087,8 @@ export interface Parameter$listAutoscalingV1NamespacedHorizontalPodAutoscaler { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 { "application/json": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscalerList; @@ -18098,14 +18098,14 @@ export interface Response$listAutoscalingV1NamespacedHorizontalPodAutoscaler$Sta "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscalerList; } export interface Parameter$createAutoscalingV1NamespacedHorizontalPodAutoscaler { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createAutoscalingV1NamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler.Content; export interface Response$createAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 { @@ -18124,8 +18124,6 @@ export interface Response$createAutoscalingV1NamespacedHorizontalPodAutoscaler$S "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; } export interface Parameter$deleteAutoscalingV1CollectionNamespacedHorizontalPodAutoscaler { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -18160,6 +18158,8 @@ export interface Parameter$deleteAutoscalingV1CollectionNamespacedHorizontalPodA timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteAutoscalingV1CollectionNamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAutoscalingV1CollectionNamespacedHorizontalPodAutoscaler$Status$200 { @@ -18168,16 +18168,16 @@ export interface Response$deleteAutoscalingV1CollectionNamespacedHorizontalPodAu "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readAutoscalingV1NamespacedHorizontalPodAutoscaler { - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 { "application/json": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; @@ -18185,16 +18185,16 @@ export interface Response$readAutoscalingV1NamespacedHorizontalPodAutoscaler$Sta "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; } export interface Parameter$replaceAutoscalingV1NamespacedHorizontalPodAutoscaler { - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceAutoscalingV1NamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler.Content; export interface Response$replaceAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 { @@ -18208,10 +18208,6 @@ export interface Response$replaceAutoscalingV1NamespacedHorizontalPodAutoscaler$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; } export interface Parameter$deleteAutoscalingV1NamespacedHorizontalPodAutoscaler { - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -18222,6 +18218,10 @@ export interface Parameter$deleteAutoscalingV1NamespacedHorizontalPodAutoscaler orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteAutoscalingV1NamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 { @@ -18235,10 +18235,6 @@ export interface Response$deleteAutoscalingV1NamespacedHorizontalPodAutoscaler$S "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchAutoscalingV1NamespacedHorizontalPodAutoscaler { - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -18247,6 +18243,10 @@ export interface Parameter$patchAutoscalingV1NamespacedHorizontalPodAutoscaler { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchAutoscalingV1NamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 { @@ -18255,12 +18255,12 @@ export interface Response$patchAutoscalingV1NamespacedHorizontalPodAutoscaler$St "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; } export interface Parameter$readAutoscalingV1NamespacedHorizontalPodAutoscalerStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the HorizontalPodAutoscaler */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readAutoscalingV1NamespacedHorizontalPodAutoscalerStatus$Status$200 { "application/json": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; @@ -18268,16 +18268,16 @@ export interface Response$readAutoscalingV1NamespacedHorizontalPodAutoscalerStat "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; } export interface Parameter$replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus { - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus = RequestBodies.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler.Content; export interface Response$replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus$Status$200 { @@ -18291,10 +18291,6 @@ export interface Response$replaceAutoscalingV1NamespacedHorizontalPodAutoscalerS "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; } export interface Parameter$patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus { - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -18303,6 +18299,10 @@ export interface Parameter$patchAutoscalingV1NamespacedHorizontalPodAutoscalerSt fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus$Status$200 { @@ -18364,8 +18364,6 @@ export interface Parameter$watchAutoscalingV1NamespacedHorizontalPodAutoscalerLi * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -18374,6 +18372,8 @@ export interface Parameter$watchAutoscalingV1NamespacedHorizontalPodAutoscalerLi timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchAutoscalingV1NamespacedHorizontalPodAutoscalerList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -18401,10 +18401,6 @@ export interface Parameter$watchAutoscalingV1NamespacedHorizontalPodAutoscaler { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -18413,6 +18409,10 @@ export interface Parameter$watchAutoscalingV1NamespacedHorizontalPodAutoscaler { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -18462,8 +18462,6 @@ export interface Response$listAutoscalingV2beta1HorizontalPodAutoscalerForAllNam "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$autoscaling$v2beta1$HorizontalPodAutoscalerList; } export interface Parameter$listAutoscalingV2beta1NamespacedHorizontalPodAutoscaler { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -18490,6 +18488,8 @@ export interface Parameter$listAutoscalingV2beta1NamespacedHorizontalPodAutoscal timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listAutoscalingV2beta1NamespacedHorizontalPodAutoscaler$Status$200 { "application/json": Schemas.io$k8s$api$autoscaling$v2beta1$HorizontalPodAutoscalerList; @@ -18499,14 +18499,14 @@ export interface Response$listAutoscalingV2beta1NamespacedHorizontalPodAutoscale "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$autoscaling$v2beta1$HorizontalPodAutoscalerList; } export interface Parameter$createAutoscalingV2beta1NamespacedHorizontalPodAutoscaler { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createAutoscalingV2beta1NamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$api$autoscaling$v2beta1$HorizontalPodAutoscaler.Content; export interface Response$createAutoscalingV2beta1NamespacedHorizontalPodAutoscaler$Status$200 { @@ -18525,8 +18525,6 @@ export interface Response$createAutoscalingV2beta1NamespacedHorizontalPodAutosca "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2beta1$HorizontalPodAutoscaler; } export interface Parameter$deleteAutoscalingV2beta1CollectionNamespacedHorizontalPodAutoscaler { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -18561,6 +18559,8 @@ export interface Parameter$deleteAutoscalingV2beta1CollectionNamespacedHorizonta timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteAutoscalingV2beta1CollectionNamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAutoscalingV2beta1CollectionNamespacedHorizontalPodAutoscaler$Status$200 { @@ -18569,16 +18569,16 @@ export interface Response$deleteAutoscalingV2beta1CollectionNamespacedHorizontal "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readAutoscalingV2beta1NamespacedHorizontalPodAutoscaler { - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readAutoscalingV2beta1NamespacedHorizontalPodAutoscaler$Status$200 { "application/json": Schemas.io$k8s$api$autoscaling$v2beta1$HorizontalPodAutoscaler; @@ -18586,16 +18586,16 @@ export interface Response$readAutoscalingV2beta1NamespacedHorizontalPodAutoscale "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2beta1$HorizontalPodAutoscaler; } export interface Parameter$replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscaler { - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$api$autoscaling$v2beta1$HorizontalPodAutoscaler.Content; export interface Response$replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscaler$Status$200 { @@ -18609,10 +18609,6 @@ export interface Response$replaceAutoscalingV2beta1NamespacedHorizontalPodAutosc "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2beta1$HorizontalPodAutoscaler; } export interface Parameter$deleteAutoscalingV2beta1NamespacedHorizontalPodAutoscaler { - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -18623,6 +18619,10 @@ export interface Parameter$deleteAutoscalingV2beta1NamespacedHorizontalPodAutosc orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteAutoscalingV2beta1NamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAutoscalingV2beta1NamespacedHorizontalPodAutoscaler$Status$200 { @@ -18636,10 +18636,6 @@ export interface Response$deleteAutoscalingV2beta1NamespacedHorizontalPodAutosca "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler { - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -18648,6 +18644,10 @@ export interface Parameter$patchAutoscalingV2beta1NamespacedHorizontalPodAutosca fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler$Status$200 { @@ -18656,12 +18656,12 @@ export interface Response$patchAutoscalingV2beta1NamespacedHorizontalPodAutoscal "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2beta1$HorizontalPodAutoscaler; } export interface Parameter$readAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the HorizontalPodAutoscaler */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus$Status$200 { "application/json": Schemas.io$k8s$api$autoscaling$v2beta1$HorizontalPodAutoscaler; @@ -18669,16 +18669,16 @@ export interface Response$readAutoscalingV2beta1NamespacedHorizontalPodAutoscale "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2beta1$HorizontalPodAutoscaler; } export interface Parameter$replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus { - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus = RequestBodies.io$k8s$api$autoscaling$v2beta1$HorizontalPodAutoscaler.Content; export interface Response$replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus$Status$200 { @@ -18692,10 +18692,6 @@ export interface Response$replaceAutoscalingV2beta1NamespacedHorizontalPodAutosc "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2beta1$HorizontalPodAutoscaler; } export interface Parameter$patchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus { - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -18704,6 +18700,10 @@ export interface Parameter$patchAutoscalingV2beta1NamespacedHorizontalPodAutosca fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus$Status$200 { @@ -18765,8 +18765,6 @@ export interface Parameter$watchAutoscalingV2beta1NamespacedHorizontalPodAutosca * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -18775,6 +18773,8 @@ export interface Parameter$watchAutoscalingV2beta1NamespacedHorizontalPodAutosca timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -18802,10 +18802,6 @@ export interface Parameter$watchAutoscalingV2beta1NamespacedHorizontalPodAutosca * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -18814,6 +18810,10 @@ export interface Parameter$watchAutoscalingV2beta1NamespacedHorizontalPodAutosca timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -18863,8 +18863,6 @@ export interface Response$listAutoscalingV2beta2HorizontalPodAutoscalerForAllNam "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$autoscaling$v2beta2$HorizontalPodAutoscalerList; } export interface Parameter$listAutoscalingV2beta2NamespacedHorizontalPodAutoscaler { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -18891,6 +18889,8 @@ export interface Parameter$listAutoscalingV2beta2NamespacedHorizontalPodAutoscal timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listAutoscalingV2beta2NamespacedHorizontalPodAutoscaler$Status$200 { "application/json": Schemas.io$k8s$api$autoscaling$v2beta2$HorizontalPodAutoscalerList; @@ -18900,14 +18900,14 @@ export interface Response$listAutoscalingV2beta2NamespacedHorizontalPodAutoscale "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$autoscaling$v2beta2$HorizontalPodAutoscalerList; } export interface Parameter$createAutoscalingV2beta2NamespacedHorizontalPodAutoscaler { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createAutoscalingV2beta2NamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$api$autoscaling$v2beta2$HorizontalPodAutoscaler.Content; export interface Response$createAutoscalingV2beta2NamespacedHorizontalPodAutoscaler$Status$200 { @@ -18926,8 +18926,6 @@ export interface Response$createAutoscalingV2beta2NamespacedHorizontalPodAutosca "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2beta2$HorizontalPodAutoscaler; } export interface Parameter$deleteAutoscalingV2beta2CollectionNamespacedHorizontalPodAutoscaler { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -18962,6 +18960,8 @@ export interface Parameter$deleteAutoscalingV2beta2CollectionNamespacedHorizonta timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteAutoscalingV2beta2CollectionNamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAutoscalingV2beta2CollectionNamespacedHorizontalPodAutoscaler$Status$200 { @@ -18970,16 +18970,16 @@ export interface Response$deleteAutoscalingV2beta2CollectionNamespacedHorizontal "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readAutoscalingV2beta2NamespacedHorizontalPodAutoscaler { - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readAutoscalingV2beta2NamespacedHorizontalPodAutoscaler$Status$200 { "application/json": Schemas.io$k8s$api$autoscaling$v2beta2$HorizontalPodAutoscaler; @@ -18987,16 +18987,16 @@ export interface Response$readAutoscalingV2beta2NamespacedHorizontalPodAutoscale "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2beta2$HorizontalPodAutoscaler; } export interface Parameter$replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscaler { - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$api$autoscaling$v2beta2$HorizontalPodAutoscaler.Content; export interface Response$replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscaler$Status$200 { @@ -19010,10 +19010,6 @@ export interface Response$replaceAutoscalingV2beta2NamespacedHorizontalPodAutosc "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2beta2$HorizontalPodAutoscaler; } export interface Parameter$deleteAutoscalingV2beta2NamespacedHorizontalPodAutoscaler { - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -19024,6 +19020,10 @@ export interface Parameter$deleteAutoscalingV2beta2NamespacedHorizontalPodAutosc orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteAutoscalingV2beta2NamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAutoscalingV2beta2NamespacedHorizontalPodAutoscaler$Status$200 { @@ -19037,10 +19037,6 @@ export interface Response$deleteAutoscalingV2beta2NamespacedHorizontalPodAutosca "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler { - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -19049,6 +19045,10 @@ export interface Parameter$patchAutoscalingV2beta2NamespacedHorizontalPodAutosca fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler$Status$200 { @@ -19057,12 +19057,12 @@ export interface Response$patchAutoscalingV2beta2NamespacedHorizontalPodAutoscal "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2beta2$HorizontalPodAutoscaler; } export interface Parameter$readAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the HorizontalPodAutoscaler */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus$Status$200 { "application/json": Schemas.io$k8s$api$autoscaling$v2beta2$HorizontalPodAutoscaler; @@ -19070,16 +19070,16 @@ export interface Response$readAutoscalingV2beta2NamespacedHorizontalPodAutoscale "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2beta2$HorizontalPodAutoscaler; } export interface Parameter$replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus { - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus = RequestBodies.io$k8s$api$autoscaling$v2beta2$HorizontalPodAutoscaler.Content; export interface Response$replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus$Status$200 { @@ -19093,10 +19093,6 @@ export interface Response$replaceAutoscalingV2beta2NamespacedHorizontalPodAutosc "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2beta2$HorizontalPodAutoscaler; } export interface Parameter$patchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus { - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -19105,6 +19101,10 @@ export interface Parameter$patchAutoscalingV2beta2NamespacedHorizontalPodAutosca fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus$Status$200 { @@ -19166,8 +19166,6 @@ export interface Parameter$watchAutoscalingV2beta2NamespacedHorizontalPodAutosca * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -19176,6 +19174,8 @@ export interface Parameter$watchAutoscalingV2beta2NamespacedHorizontalPodAutosca timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -19203,10 +19203,6 @@ export interface Parameter$watchAutoscalingV2beta2NamespacedHorizontalPodAutosca * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the HorizontalPodAutoscaler */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -19215,6 +19211,10 @@ export interface Parameter$watchAutoscalingV2beta2NamespacedHorizontalPodAutosca timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the HorizontalPodAutoscaler */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -19269,8 +19269,6 @@ export interface Response$listBatchV1JobForAllNamespaces$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$batch$v1$JobList; } export interface Parameter$listBatchV1NamespacedJob { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -19297,6 +19295,8 @@ export interface Parameter$listBatchV1NamespacedJob { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listBatchV1NamespacedJob$Status$200 { "application/json": Schemas.io$k8s$api$batch$v1$JobList; @@ -19306,14 +19306,14 @@ export interface Response$listBatchV1NamespacedJob$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$batch$v1$JobList; } export interface Parameter$createBatchV1NamespacedJob { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createBatchV1NamespacedJob = RequestBodies.io$k8s$api$batch$v1$Job.Content; export interface Response$createBatchV1NamespacedJob$Status$200 { @@ -19332,8 +19332,6 @@ export interface Response$createBatchV1NamespacedJob$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$Job; } export interface Parameter$deleteBatchV1CollectionNamespacedJob { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -19368,6 +19366,8 @@ export interface Parameter$deleteBatchV1CollectionNamespacedJob { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteBatchV1CollectionNamespacedJob = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteBatchV1CollectionNamespacedJob$Status$200 { @@ -19376,16 +19376,16 @@ export interface Response$deleteBatchV1CollectionNamespacedJob$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readBatchV1NamespacedJob { - /** name of the Job */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the Job */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readBatchV1NamespacedJob$Status$200 { "application/json": Schemas.io$k8s$api$batch$v1$Job; @@ -19393,16 +19393,16 @@ export interface Response$readBatchV1NamespacedJob$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$Job; } export interface Parameter$replaceBatchV1NamespacedJob { - /** name of the Job */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Job */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceBatchV1NamespacedJob = RequestBodies.io$k8s$api$batch$v1$Job.Content; export interface Response$replaceBatchV1NamespacedJob$Status$200 { @@ -19416,10 +19416,6 @@ export interface Response$replaceBatchV1NamespacedJob$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$Job; } export interface Parameter$deleteBatchV1NamespacedJob { - /** name of the Job */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -19430,6 +19426,10 @@ export interface Parameter$deleteBatchV1NamespacedJob { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the Job */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteBatchV1NamespacedJob = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteBatchV1NamespacedJob$Status$200 { @@ -19443,10 +19443,6 @@ export interface Response$deleteBatchV1NamespacedJob$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchBatchV1NamespacedJob { - /** name of the Job */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -19455,6 +19451,10 @@ export interface Parameter$patchBatchV1NamespacedJob { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Job */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchBatchV1NamespacedJob = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchBatchV1NamespacedJob$Status$200 { @@ -19463,12 +19463,12 @@ export interface Response$patchBatchV1NamespacedJob$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$Job; } export interface Parameter$readBatchV1NamespacedJobStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the Job */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readBatchV1NamespacedJobStatus$Status$200 { "application/json": Schemas.io$k8s$api$batch$v1$Job; @@ -19476,16 +19476,16 @@ export interface Response$readBatchV1NamespacedJobStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$Job; } export interface Parameter$replaceBatchV1NamespacedJobStatus { - /** name of the Job */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Job */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceBatchV1NamespacedJobStatus = RequestBodies.io$k8s$api$batch$v1$Job.Content; export interface Response$replaceBatchV1NamespacedJobStatus$Status$200 { @@ -19499,10 +19499,6 @@ export interface Response$replaceBatchV1NamespacedJobStatus$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$Job; } export interface Parameter$patchBatchV1NamespacedJobStatus { - /** name of the Job */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -19511,6 +19507,10 @@ export interface Parameter$patchBatchV1NamespacedJobStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Job */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchBatchV1NamespacedJobStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchBatchV1NamespacedJobStatus$Status$200 { @@ -19572,8 +19572,6 @@ export interface Parameter$watchBatchV1NamespacedJobList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -19582,6 +19580,8 @@ export interface Parameter$watchBatchV1NamespacedJobList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchBatchV1NamespacedJobList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -19609,10 +19609,6 @@ export interface Parameter$watchBatchV1NamespacedJob { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the Job */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -19621,6 +19617,10 @@ export interface Parameter$watchBatchV1NamespacedJob { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the Job */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchBatchV1NamespacedJob$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -19670,8 +19670,6 @@ export interface Response$listBatchV1beta1CronJobForAllNamespaces$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$batch$v1beta1$CronJobList; } export interface Parameter$listBatchV1beta1NamespacedCronJob { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -19698,6 +19696,8 @@ export interface Parameter$listBatchV1beta1NamespacedCronJob { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listBatchV1beta1NamespacedCronJob$Status$200 { "application/json": Schemas.io$k8s$api$batch$v1beta1$CronJobList; @@ -19707,14 +19707,14 @@ export interface Response$listBatchV1beta1NamespacedCronJob$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$batch$v1beta1$CronJobList; } export interface Parameter$createBatchV1beta1NamespacedCronJob { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createBatchV1beta1NamespacedCronJob = RequestBodies.io$k8s$api$batch$v1beta1$CronJob.Content; export interface Response$createBatchV1beta1NamespacedCronJob$Status$200 { @@ -19733,8 +19733,6 @@ export interface Response$createBatchV1beta1NamespacedCronJob$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1beta1$CronJob; } export interface Parameter$deleteBatchV1beta1CollectionNamespacedCronJob { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -19769,6 +19767,8 @@ export interface Parameter$deleteBatchV1beta1CollectionNamespacedCronJob { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteBatchV1beta1CollectionNamespacedCronJob = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteBatchV1beta1CollectionNamespacedCronJob$Status$200 { @@ -19777,16 +19777,16 @@ export interface Response$deleteBatchV1beta1CollectionNamespacedCronJob$Status$2 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readBatchV1beta1NamespacedCronJob { - /** name of the CronJob */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the CronJob */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readBatchV1beta1NamespacedCronJob$Status$200 { "application/json": Schemas.io$k8s$api$batch$v1beta1$CronJob; @@ -19794,16 +19794,16 @@ export interface Response$readBatchV1beta1NamespacedCronJob$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1beta1$CronJob; } export interface Parameter$replaceBatchV1beta1NamespacedCronJob { - /** name of the CronJob */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the CronJob */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceBatchV1beta1NamespacedCronJob = RequestBodies.io$k8s$api$batch$v1beta1$CronJob.Content; export interface Response$replaceBatchV1beta1NamespacedCronJob$Status$200 { @@ -19817,10 +19817,6 @@ export interface Response$replaceBatchV1beta1NamespacedCronJob$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1beta1$CronJob; } export interface Parameter$deleteBatchV1beta1NamespacedCronJob { - /** name of the CronJob */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -19831,6 +19827,10 @@ export interface Parameter$deleteBatchV1beta1NamespacedCronJob { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the CronJob */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteBatchV1beta1NamespacedCronJob = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteBatchV1beta1NamespacedCronJob$Status$200 { @@ -19844,10 +19844,6 @@ export interface Response$deleteBatchV1beta1NamespacedCronJob$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchBatchV1beta1NamespacedCronJob { - /** name of the CronJob */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -19856,6 +19852,10 @@ export interface Parameter$patchBatchV1beta1NamespacedCronJob { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the CronJob */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchBatchV1beta1NamespacedCronJob = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchBatchV1beta1NamespacedCronJob$Status$200 { @@ -19864,12 +19864,12 @@ export interface Response$patchBatchV1beta1NamespacedCronJob$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1beta1$CronJob; } export interface Parameter$readBatchV1beta1NamespacedCronJobStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the CronJob */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readBatchV1beta1NamespacedCronJobStatus$Status$200 { "application/json": Schemas.io$k8s$api$batch$v1beta1$CronJob; @@ -19877,16 +19877,16 @@ export interface Response$readBatchV1beta1NamespacedCronJobStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1beta1$CronJob; } export interface Parameter$replaceBatchV1beta1NamespacedCronJobStatus { - /** name of the CronJob */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the CronJob */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceBatchV1beta1NamespacedCronJobStatus = RequestBodies.io$k8s$api$batch$v1beta1$CronJob.Content; export interface Response$replaceBatchV1beta1NamespacedCronJobStatus$Status$200 { @@ -19900,10 +19900,6 @@ export interface Response$replaceBatchV1beta1NamespacedCronJobStatus$Status$201 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1beta1$CronJob; } export interface Parameter$patchBatchV1beta1NamespacedCronJobStatus { - /** name of the CronJob */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -19912,6 +19908,10 @@ export interface Parameter$patchBatchV1beta1NamespacedCronJobStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the CronJob */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchBatchV1beta1NamespacedCronJobStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchBatchV1beta1NamespacedCronJobStatus$Status$200 { @@ -19973,8 +19973,6 @@ export interface Parameter$watchBatchV1beta1NamespacedCronJobList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -19983,6 +19981,8 @@ export interface Parameter$watchBatchV1beta1NamespacedCronJobList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchBatchV1beta1NamespacedCronJobList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -20010,10 +20010,6 @@ export interface Parameter$watchBatchV1beta1NamespacedCronJob { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the CronJob */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -20022,6 +20018,10 @@ export interface Parameter$watchBatchV1beta1NamespacedCronJob { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the CronJob */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchBatchV1beta1NamespacedCronJob$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -20071,8 +20071,6 @@ export interface Response$listBatchV2alpha1CronJobForAllNamespaces$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$batch$v2alpha1$CronJobList; } export interface Parameter$listBatchV2alpha1NamespacedCronJob { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -20099,6 +20097,8 @@ export interface Parameter$listBatchV2alpha1NamespacedCronJob { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listBatchV2alpha1NamespacedCronJob$Status$200 { "application/json": Schemas.io$k8s$api$batch$v2alpha1$CronJobList; @@ -20108,14 +20108,14 @@ export interface Response$listBatchV2alpha1NamespacedCronJob$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$batch$v2alpha1$CronJobList; } export interface Parameter$createBatchV2alpha1NamespacedCronJob { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createBatchV2alpha1NamespacedCronJob = RequestBodies.io$k8s$api$batch$v2alpha1$CronJob.Content; export interface Response$createBatchV2alpha1NamespacedCronJob$Status$200 { @@ -20134,8 +20134,6 @@ export interface Response$createBatchV2alpha1NamespacedCronJob$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v2alpha1$CronJob; } export interface Parameter$deleteBatchV2alpha1CollectionNamespacedCronJob { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -20170,6 +20168,8 @@ export interface Parameter$deleteBatchV2alpha1CollectionNamespacedCronJob { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteBatchV2alpha1CollectionNamespacedCronJob = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteBatchV2alpha1CollectionNamespacedCronJob$Status$200 { @@ -20178,16 +20178,16 @@ export interface Response$deleteBatchV2alpha1CollectionNamespacedCronJob$Status$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readBatchV2alpha1NamespacedCronJob { - /** name of the CronJob */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the CronJob */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readBatchV2alpha1NamespacedCronJob$Status$200 { "application/json": Schemas.io$k8s$api$batch$v2alpha1$CronJob; @@ -20195,16 +20195,16 @@ export interface Response$readBatchV2alpha1NamespacedCronJob$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v2alpha1$CronJob; } export interface Parameter$replaceBatchV2alpha1NamespacedCronJob { - /** name of the CronJob */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the CronJob */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceBatchV2alpha1NamespacedCronJob = RequestBodies.io$k8s$api$batch$v2alpha1$CronJob.Content; export interface Response$replaceBatchV2alpha1NamespacedCronJob$Status$200 { @@ -20218,10 +20218,6 @@ export interface Response$replaceBatchV2alpha1NamespacedCronJob$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v2alpha1$CronJob; } export interface Parameter$deleteBatchV2alpha1NamespacedCronJob { - /** name of the CronJob */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -20232,6 +20228,10 @@ export interface Parameter$deleteBatchV2alpha1NamespacedCronJob { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the CronJob */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteBatchV2alpha1NamespacedCronJob = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteBatchV2alpha1NamespacedCronJob$Status$200 { @@ -20245,10 +20245,6 @@ export interface Response$deleteBatchV2alpha1NamespacedCronJob$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchBatchV2alpha1NamespacedCronJob { - /** name of the CronJob */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -20257,6 +20253,10 @@ export interface Parameter$patchBatchV2alpha1NamespacedCronJob { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the CronJob */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchBatchV2alpha1NamespacedCronJob = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchBatchV2alpha1NamespacedCronJob$Status$200 { @@ -20265,12 +20265,12 @@ export interface Response$patchBatchV2alpha1NamespacedCronJob$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v2alpha1$CronJob; } export interface Parameter$readBatchV2alpha1NamespacedCronJobStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the CronJob */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readBatchV2alpha1NamespacedCronJobStatus$Status$200 { "application/json": Schemas.io$k8s$api$batch$v2alpha1$CronJob; @@ -20278,16 +20278,16 @@ export interface Response$readBatchV2alpha1NamespacedCronJobStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v2alpha1$CronJob; } export interface Parameter$replaceBatchV2alpha1NamespacedCronJobStatus { - /** name of the CronJob */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the CronJob */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceBatchV2alpha1NamespacedCronJobStatus = RequestBodies.io$k8s$api$batch$v2alpha1$CronJob.Content; export interface Response$replaceBatchV2alpha1NamespacedCronJobStatus$Status$200 { @@ -20301,10 +20301,6 @@ export interface Response$replaceBatchV2alpha1NamespacedCronJobStatus$Status$201 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v2alpha1$CronJob; } export interface Parameter$patchBatchV2alpha1NamespacedCronJobStatus { - /** name of the CronJob */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -20313,6 +20309,10 @@ export interface Parameter$patchBatchV2alpha1NamespacedCronJobStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the CronJob */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchBatchV2alpha1NamespacedCronJobStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchBatchV2alpha1NamespacedCronJobStatus$Status$200 { @@ -20374,8 +20374,6 @@ export interface Parameter$watchBatchV2alpha1NamespacedCronJobList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -20384,6 +20382,8 @@ export interface Parameter$watchBatchV2alpha1NamespacedCronJobList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchBatchV2alpha1NamespacedCronJobList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -20411,10 +20411,6 @@ export interface Parameter$watchBatchV2alpha1NamespacedCronJob { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the CronJob */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -20423,6 +20419,10 @@ export interface Parameter$watchBatchV2alpha1NamespacedCronJob { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the CronJob */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchBatchV2alpha1NamespacedCronJob$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -20543,14 +20543,14 @@ export interface Response$deleteCertificatesV1beta1CollectionCertificateSigningR "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readCertificatesV1beta1CertificateSigningRequest { - /** name of the CertificateSigningRequest */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the CertificateSigningRequest */ + name: string; } export interface Response$readCertificatesV1beta1CertificateSigningRequest$Status$200 { "application/json": Schemas.io$k8s$api$certificates$v1beta1$CertificateSigningRequest; @@ -20558,14 +20558,14 @@ export interface Response$readCertificatesV1beta1CertificateSigningRequest$Statu "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1beta1$CertificateSigningRequest; } export interface Parameter$replaceCertificatesV1beta1CertificateSigningRequest { - /** name of the CertificateSigningRequest */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the CertificateSigningRequest */ + name: string; } export type RequestBody$replaceCertificatesV1beta1CertificateSigningRequest = RequestBodies.io$k8s$api$certificates$v1beta1$CertificateSigningRequest.Content; export interface Response$replaceCertificatesV1beta1CertificateSigningRequest$Status$200 { @@ -20579,8 +20579,6 @@ export interface Response$replaceCertificatesV1beta1CertificateSigningRequest$St "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1beta1$CertificateSigningRequest; } export interface Parameter$deleteCertificatesV1beta1CertificateSigningRequest { - /** name of the CertificateSigningRequest */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -20591,6 +20589,8 @@ export interface Parameter$deleteCertificatesV1beta1CertificateSigningRequest { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the CertificateSigningRequest */ + name: string; } export type RequestBody$deleteCertificatesV1beta1CertificateSigningRequest = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCertificatesV1beta1CertificateSigningRequest$Status$200 { @@ -20604,8 +20604,6 @@ export interface Response$deleteCertificatesV1beta1CertificateSigningRequest$Sta "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchCertificatesV1beta1CertificateSigningRequest { - /** name of the CertificateSigningRequest */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -20614,6 +20612,8 @@ export interface Parameter$patchCertificatesV1beta1CertificateSigningRequest { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the CertificateSigningRequest */ + name: string; } export type RequestBody$patchCertificatesV1beta1CertificateSigningRequest = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCertificatesV1beta1CertificateSigningRequest$Status$200 { @@ -20626,10 +20626,10 @@ export interface Parameter$replaceCertificatesV1beta1CertificateSigningRequestAp dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; - /** name of the CertificateSigningRequest */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** name of the CertificateSigningRequest */ + name: string; } export type RequestBody$replaceCertificatesV1beta1CertificateSigningRequestApproval = RequestBodies.io$k8s$api$certificates$v1beta1$CertificateSigningRequest.Content; export interface Response$replaceCertificatesV1beta1CertificateSigningRequestApproval$Status$200 { @@ -20643,10 +20643,10 @@ export interface Response$replaceCertificatesV1beta1CertificateSigningRequestApp "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1beta1$CertificateSigningRequest; } export interface Parameter$readCertificatesV1beta1CertificateSigningRequestStatus { - /** name of the CertificateSigningRequest */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** name of the CertificateSigningRequest */ + name: string; } export interface Response$readCertificatesV1beta1CertificateSigningRequestStatus$Status$200 { "application/json": Schemas.io$k8s$api$certificates$v1beta1$CertificateSigningRequest; @@ -20654,14 +20654,14 @@ export interface Response$readCertificatesV1beta1CertificateSigningRequestStatus "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1beta1$CertificateSigningRequest; } export interface Parameter$replaceCertificatesV1beta1CertificateSigningRequestStatus { - /** name of the CertificateSigningRequest */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the CertificateSigningRequest */ + name: string; } export type RequestBody$replaceCertificatesV1beta1CertificateSigningRequestStatus = RequestBodies.io$k8s$api$certificates$v1beta1$CertificateSigningRequest.Content; export interface Response$replaceCertificatesV1beta1CertificateSigningRequestStatus$Status$200 { @@ -20675,8 +20675,6 @@ export interface Response$replaceCertificatesV1beta1CertificateSigningRequestSta "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1beta1$CertificateSigningRequest; } export interface Parameter$patchCertificatesV1beta1CertificateSigningRequestStatus { - /** name of the CertificateSigningRequest */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -20685,6 +20683,8 @@ export interface Parameter$patchCertificatesV1beta1CertificateSigningRequestStat fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the CertificateSigningRequest */ + name: string; } export type RequestBody$patchCertificatesV1beta1CertificateSigningRequestStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCertificatesV1beta1CertificateSigningRequestStatus$Status$200 { @@ -20746,8 +20746,6 @@ export interface Parameter$watchCertificatesV1beta1CertificateSigningRequest { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the CertificateSigningRequest */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -20756,6 +20754,8 @@ export interface Parameter$watchCertificatesV1beta1CertificateSigningRequest { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the CertificateSigningRequest */ + name: string; } export interface Response$watchCertificatesV1beta1CertificateSigningRequest$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -20810,8 +20810,6 @@ export interface Response$listCoordinationV1LeaseForAllNamespaces$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$coordination$v1$LeaseList; } export interface Parameter$listCoordinationV1NamespacedLease { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -20838,6 +20836,8 @@ export interface Parameter$listCoordinationV1NamespacedLease { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listCoordinationV1NamespacedLease$Status$200 { "application/json": Schemas.io$k8s$api$coordination$v1$LeaseList; @@ -20847,14 +20847,14 @@ export interface Response$listCoordinationV1NamespacedLease$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$coordination$v1$LeaseList; } export interface Parameter$createCoordinationV1NamespacedLease { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createCoordinationV1NamespacedLease = RequestBodies.io$k8s$api$coordination$v1$Lease.Content; export interface Response$createCoordinationV1NamespacedLease$Status$200 { @@ -20873,8 +20873,6 @@ export interface Response$createCoordinationV1NamespacedLease$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$coordination$v1$Lease; } export interface Parameter$deleteCoordinationV1CollectionNamespacedLease { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -20909,6 +20907,8 @@ export interface Parameter$deleteCoordinationV1CollectionNamespacedLease { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoordinationV1CollectionNamespacedLease = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoordinationV1CollectionNamespacedLease$Status$200 { @@ -20917,16 +20917,16 @@ export interface Response$deleteCoordinationV1CollectionNamespacedLease$Status$2 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readCoordinationV1NamespacedLease { - /** name of the Lease */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the Lease */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readCoordinationV1NamespacedLease$Status$200 { "application/json": Schemas.io$k8s$api$coordination$v1$Lease; @@ -20934,16 +20934,16 @@ export interface Response$readCoordinationV1NamespacedLease$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$coordination$v1$Lease; } export interface Parameter$replaceCoordinationV1NamespacedLease { - /** name of the Lease */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Lease */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceCoordinationV1NamespacedLease = RequestBodies.io$k8s$api$coordination$v1$Lease.Content; export interface Response$replaceCoordinationV1NamespacedLease$Status$200 { @@ -20957,10 +20957,6 @@ export interface Response$replaceCoordinationV1NamespacedLease$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$coordination$v1$Lease; } export interface Parameter$deleteCoordinationV1NamespacedLease { - /** name of the Lease */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -20971,6 +20967,10 @@ export interface Parameter$deleteCoordinationV1NamespacedLease { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the Lease */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoordinationV1NamespacedLease = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoordinationV1NamespacedLease$Status$200 { @@ -20984,10 +20984,6 @@ export interface Response$deleteCoordinationV1NamespacedLease$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchCoordinationV1NamespacedLease { - /** name of the Lease */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -20996,6 +20992,10 @@ export interface Parameter$patchCoordinationV1NamespacedLease { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Lease */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchCoordinationV1NamespacedLease = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoordinationV1NamespacedLease$Status$200 { @@ -21057,8 +21057,6 @@ export interface Parameter$watchCoordinationV1NamespacedLeaseList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -21067,6 +21065,8 @@ export interface Parameter$watchCoordinationV1NamespacedLeaseList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoordinationV1NamespacedLeaseList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -21094,10 +21094,6 @@ export interface Parameter$watchCoordinationV1NamespacedLease { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the Lease */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -21106,6 +21102,10 @@ export interface Parameter$watchCoordinationV1NamespacedLease { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the Lease */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoordinationV1NamespacedLease$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -21155,8 +21155,6 @@ export interface Response$listCoordinationV1beta1LeaseForAllNamespaces$Status$20 "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$coordination$v1beta1$LeaseList; } export interface Parameter$listCoordinationV1beta1NamespacedLease { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -21183,6 +21181,8 @@ export interface Parameter$listCoordinationV1beta1NamespacedLease { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listCoordinationV1beta1NamespacedLease$Status$200 { "application/json": Schemas.io$k8s$api$coordination$v1beta1$LeaseList; @@ -21192,14 +21192,14 @@ export interface Response$listCoordinationV1beta1NamespacedLease$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$coordination$v1beta1$LeaseList; } export interface Parameter$createCoordinationV1beta1NamespacedLease { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createCoordinationV1beta1NamespacedLease = RequestBodies.io$k8s$api$coordination$v1beta1$Lease.Content; export interface Response$createCoordinationV1beta1NamespacedLease$Status$200 { @@ -21218,8 +21218,6 @@ export interface Response$createCoordinationV1beta1NamespacedLease$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$coordination$v1beta1$Lease; } export interface Parameter$deleteCoordinationV1beta1CollectionNamespacedLease { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -21254,6 +21252,8 @@ export interface Parameter$deleteCoordinationV1beta1CollectionNamespacedLease { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoordinationV1beta1CollectionNamespacedLease = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoordinationV1beta1CollectionNamespacedLease$Status$200 { @@ -21262,16 +21262,16 @@ export interface Response$deleteCoordinationV1beta1CollectionNamespacedLease$Sta "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readCoordinationV1beta1NamespacedLease { - /** name of the Lease */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the Lease */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readCoordinationV1beta1NamespacedLease$Status$200 { "application/json": Schemas.io$k8s$api$coordination$v1beta1$Lease; @@ -21279,16 +21279,16 @@ export interface Response$readCoordinationV1beta1NamespacedLease$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$coordination$v1beta1$Lease; } export interface Parameter$replaceCoordinationV1beta1NamespacedLease { - /** name of the Lease */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Lease */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceCoordinationV1beta1NamespacedLease = RequestBodies.io$k8s$api$coordination$v1beta1$Lease.Content; export interface Response$replaceCoordinationV1beta1NamespacedLease$Status$200 { @@ -21302,10 +21302,6 @@ export interface Response$replaceCoordinationV1beta1NamespacedLease$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$coordination$v1beta1$Lease; } export interface Parameter$deleteCoordinationV1beta1NamespacedLease { - /** name of the Lease */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -21316,6 +21312,10 @@ export interface Parameter$deleteCoordinationV1beta1NamespacedLease { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the Lease */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteCoordinationV1beta1NamespacedLease = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoordinationV1beta1NamespacedLease$Status$200 { @@ -21329,10 +21329,6 @@ export interface Response$deleteCoordinationV1beta1NamespacedLease$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchCoordinationV1beta1NamespacedLease { - /** name of the Lease */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -21341,6 +21337,10 @@ export interface Parameter$patchCoordinationV1beta1NamespacedLease { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Lease */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchCoordinationV1beta1NamespacedLease = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoordinationV1beta1NamespacedLease$Status$200 { @@ -21402,8 +21402,6 @@ export interface Parameter$watchCoordinationV1beta1NamespacedLeaseList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -21412,6 +21410,8 @@ export interface Parameter$watchCoordinationV1beta1NamespacedLeaseList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoordinationV1beta1NamespacedLeaseList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -21439,10 +21439,6 @@ export interface Parameter$watchCoordinationV1beta1NamespacedLease { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the Lease */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -21451,6 +21447,10 @@ export interface Parameter$watchCoordinationV1beta1NamespacedLease { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the Lease */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchCoordinationV1beta1NamespacedLease$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -21505,8 +21505,6 @@ export interface Response$listDiscoveryV1beta1EndpointSliceForAllNamespaces$Stat "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$discovery$v1beta1$EndpointSliceList; } export interface Parameter$listDiscoveryV1beta1NamespacedEndpointSlice { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -21533,6 +21531,8 @@ export interface Parameter$listDiscoveryV1beta1NamespacedEndpointSlice { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listDiscoveryV1beta1NamespacedEndpointSlice$Status$200 { "application/json": Schemas.io$k8s$api$discovery$v1beta1$EndpointSliceList; @@ -21542,14 +21542,14 @@ export interface Response$listDiscoveryV1beta1NamespacedEndpointSlice$Status$200 "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$discovery$v1beta1$EndpointSliceList; } export interface Parameter$createDiscoveryV1beta1NamespacedEndpointSlice { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createDiscoveryV1beta1NamespacedEndpointSlice = RequestBodies.io$k8s$api$discovery$v1beta1$EndpointSlice.Content; export interface Response$createDiscoveryV1beta1NamespacedEndpointSlice$Status$200 { @@ -21568,8 +21568,6 @@ export interface Response$createDiscoveryV1beta1NamespacedEndpointSlice$Status$2 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$discovery$v1beta1$EndpointSlice; } export interface Parameter$deleteDiscoveryV1beta1CollectionNamespacedEndpointSlice { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -21604,6 +21602,8 @@ export interface Parameter$deleteDiscoveryV1beta1CollectionNamespacedEndpointSli timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteDiscoveryV1beta1CollectionNamespacedEndpointSlice = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteDiscoveryV1beta1CollectionNamespacedEndpointSlice$Status$200 { @@ -21612,16 +21612,16 @@ export interface Response$deleteDiscoveryV1beta1CollectionNamespacedEndpointSlic "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readDiscoveryV1beta1NamespacedEndpointSlice { - /** name of the EndpointSlice */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the EndpointSlice */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readDiscoveryV1beta1NamespacedEndpointSlice$Status$200 { "application/json": Schemas.io$k8s$api$discovery$v1beta1$EndpointSlice; @@ -21629,16 +21629,16 @@ export interface Response$readDiscoveryV1beta1NamespacedEndpointSlice$Status$200 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$discovery$v1beta1$EndpointSlice; } export interface Parameter$replaceDiscoveryV1beta1NamespacedEndpointSlice { - /** name of the EndpointSlice */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the EndpointSlice */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceDiscoveryV1beta1NamespacedEndpointSlice = RequestBodies.io$k8s$api$discovery$v1beta1$EndpointSlice.Content; export interface Response$replaceDiscoveryV1beta1NamespacedEndpointSlice$Status$200 { @@ -21652,10 +21652,6 @@ export interface Response$replaceDiscoveryV1beta1NamespacedEndpointSlice$Status$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$discovery$v1beta1$EndpointSlice; } export interface Parameter$deleteDiscoveryV1beta1NamespacedEndpointSlice { - /** name of the EndpointSlice */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -21666,6 +21662,10 @@ export interface Parameter$deleteDiscoveryV1beta1NamespacedEndpointSlice { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the EndpointSlice */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteDiscoveryV1beta1NamespacedEndpointSlice = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteDiscoveryV1beta1NamespacedEndpointSlice$Status$200 { @@ -21679,10 +21679,6 @@ export interface Response$deleteDiscoveryV1beta1NamespacedEndpointSlice$Status$2 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchDiscoveryV1beta1NamespacedEndpointSlice { - /** name of the EndpointSlice */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -21691,6 +21687,10 @@ export interface Parameter$patchDiscoveryV1beta1NamespacedEndpointSlice { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the EndpointSlice */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchDiscoveryV1beta1NamespacedEndpointSlice = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchDiscoveryV1beta1NamespacedEndpointSlice$Status$200 { @@ -21752,8 +21752,6 @@ export interface Parameter$watchDiscoveryV1beta1NamespacedEndpointSliceList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -21762,6 +21760,8 @@ export interface Parameter$watchDiscoveryV1beta1NamespacedEndpointSliceList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchDiscoveryV1beta1NamespacedEndpointSliceList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -21789,10 +21789,6 @@ export interface Parameter$watchDiscoveryV1beta1NamespacedEndpointSlice { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the EndpointSlice */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -21801,6 +21797,10 @@ export interface Parameter$watchDiscoveryV1beta1NamespacedEndpointSlice { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the EndpointSlice */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchDiscoveryV1beta1NamespacedEndpointSlice$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -21855,8 +21855,6 @@ export interface Response$listEventsV1beta1EventForAllNamespaces$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$events$v1beta1$EventList; } export interface Parameter$listEventsV1beta1NamespacedEvent { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -21883,6 +21881,8 @@ export interface Parameter$listEventsV1beta1NamespacedEvent { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listEventsV1beta1NamespacedEvent$Status$200 { "application/json": Schemas.io$k8s$api$events$v1beta1$EventList; @@ -21892,14 +21892,14 @@ export interface Response$listEventsV1beta1NamespacedEvent$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$events$v1beta1$EventList; } export interface Parameter$createEventsV1beta1NamespacedEvent { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createEventsV1beta1NamespacedEvent = RequestBodies.io$k8s$api$events$v1beta1$Event.Content; export interface Response$createEventsV1beta1NamespacedEvent$Status$200 { @@ -21918,8 +21918,6 @@ export interface Response$createEventsV1beta1NamespacedEvent$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$events$v1beta1$Event; } export interface Parameter$deleteEventsV1beta1CollectionNamespacedEvent { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -21954,6 +21952,8 @@ export interface Parameter$deleteEventsV1beta1CollectionNamespacedEvent { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteEventsV1beta1CollectionNamespacedEvent = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteEventsV1beta1CollectionNamespacedEvent$Status$200 { @@ -21962,16 +21962,16 @@ export interface Response$deleteEventsV1beta1CollectionNamespacedEvent$Status$20 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readEventsV1beta1NamespacedEvent { - /** name of the Event */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the Event */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readEventsV1beta1NamespacedEvent$Status$200 { "application/json": Schemas.io$k8s$api$events$v1beta1$Event; @@ -21979,16 +21979,16 @@ export interface Response$readEventsV1beta1NamespacedEvent$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$events$v1beta1$Event; } export interface Parameter$replaceEventsV1beta1NamespacedEvent { - /** name of the Event */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Event */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceEventsV1beta1NamespacedEvent = RequestBodies.io$k8s$api$events$v1beta1$Event.Content; export interface Response$replaceEventsV1beta1NamespacedEvent$Status$200 { @@ -22002,10 +22002,6 @@ export interface Response$replaceEventsV1beta1NamespacedEvent$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$events$v1beta1$Event; } export interface Parameter$deleteEventsV1beta1NamespacedEvent { - /** name of the Event */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -22016,6 +22012,10 @@ export interface Parameter$deleteEventsV1beta1NamespacedEvent { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the Event */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteEventsV1beta1NamespacedEvent = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteEventsV1beta1NamespacedEvent$Status$200 { @@ -22029,10 +22029,6 @@ export interface Response$deleteEventsV1beta1NamespacedEvent$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchEventsV1beta1NamespacedEvent { - /** name of the Event */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -22041,6 +22037,10 @@ export interface Parameter$patchEventsV1beta1NamespacedEvent { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Event */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchEventsV1beta1NamespacedEvent = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchEventsV1beta1NamespacedEvent$Status$200 { @@ -22102,8 +22102,6 @@ export interface Parameter$watchEventsV1beta1NamespacedEventList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -22112,6 +22110,8 @@ export interface Parameter$watchEventsV1beta1NamespacedEventList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchEventsV1beta1NamespacedEventList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -22139,10 +22139,6 @@ export interface Parameter$watchEventsV1beta1NamespacedEvent { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the Event */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -22151,6 +22147,10 @@ export interface Parameter$watchEventsV1beta1NamespacedEvent { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the Event */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchEventsV1beta1NamespacedEvent$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -22205,8 +22205,6 @@ export interface Response$listExtensionsV1beta1IngressForAllNamespaces$Status$20 "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$extensions$v1beta1$IngressList; } export interface Parameter$listExtensionsV1beta1NamespacedIngress { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -22233,6 +22231,8 @@ export interface Parameter$listExtensionsV1beta1NamespacedIngress { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listExtensionsV1beta1NamespacedIngress$Status$200 { "application/json": Schemas.io$k8s$api$extensions$v1beta1$IngressList; @@ -22242,14 +22242,14 @@ export interface Response$listExtensionsV1beta1NamespacedIngress$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$extensions$v1beta1$IngressList; } export interface Parameter$createExtensionsV1beta1NamespacedIngress { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createExtensionsV1beta1NamespacedIngress = RequestBodies.io$k8s$api$extensions$v1beta1$Ingress.Content; export interface Response$createExtensionsV1beta1NamespacedIngress$Status$200 { @@ -22268,8 +22268,6 @@ export interface Response$createExtensionsV1beta1NamespacedIngress$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$extensions$v1beta1$Ingress; } export interface Parameter$deleteExtensionsV1beta1CollectionNamespacedIngress { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -22304,6 +22302,8 @@ export interface Parameter$deleteExtensionsV1beta1CollectionNamespacedIngress { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteExtensionsV1beta1CollectionNamespacedIngress = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteExtensionsV1beta1CollectionNamespacedIngress$Status$200 { @@ -22312,16 +22312,16 @@ export interface Response$deleteExtensionsV1beta1CollectionNamespacedIngress$Sta "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readExtensionsV1beta1NamespacedIngress { - /** name of the Ingress */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the Ingress */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readExtensionsV1beta1NamespacedIngress$Status$200 { "application/json": Schemas.io$k8s$api$extensions$v1beta1$Ingress; @@ -22329,16 +22329,16 @@ export interface Response$readExtensionsV1beta1NamespacedIngress$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$extensions$v1beta1$Ingress; } export interface Parameter$replaceExtensionsV1beta1NamespacedIngress { - /** name of the Ingress */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Ingress */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceExtensionsV1beta1NamespacedIngress = RequestBodies.io$k8s$api$extensions$v1beta1$Ingress.Content; export interface Response$replaceExtensionsV1beta1NamespacedIngress$Status$200 { @@ -22352,10 +22352,6 @@ export interface Response$replaceExtensionsV1beta1NamespacedIngress$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$extensions$v1beta1$Ingress; } export interface Parameter$deleteExtensionsV1beta1NamespacedIngress { - /** name of the Ingress */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -22366,6 +22362,10 @@ export interface Parameter$deleteExtensionsV1beta1NamespacedIngress { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the Ingress */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteExtensionsV1beta1NamespacedIngress = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteExtensionsV1beta1NamespacedIngress$Status$200 { @@ -22379,10 +22379,6 @@ export interface Response$deleteExtensionsV1beta1NamespacedIngress$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchExtensionsV1beta1NamespacedIngress { - /** name of the Ingress */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -22391,6 +22387,10 @@ export interface Parameter$patchExtensionsV1beta1NamespacedIngress { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Ingress */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchExtensionsV1beta1NamespacedIngress = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchExtensionsV1beta1NamespacedIngress$Status$200 { @@ -22399,12 +22399,12 @@ export interface Response$patchExtensionsV1beta1NamespacedIngress$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$extensions$v1beta1$Ingress; } export interface Parameter$readExtensionsV1beta1NamespacedIngressStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the Ingress */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readExtensionsV1beta1NamespacedIngressStatus$Status$200 { "application/json": Schemas.io$k8s$api$extensions$v1beta1$Ingress; @@ -22412,16 +22412,16 @@ export interface Response$readExtensionsV1beta1NamespacedIngressStatus$Status$20 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$extensions$v1beta1$Ingress; } export interface Parameter$replaceExtensionsV1beta1NamespacedIngressStatus { - /** name of the Ingress */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Ingress */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceExtensionsV1beta1NamespacedIngressStatus = RequestBodies.io$k8s$api$extensions$v1beta1$Ingress.Content; export interface Response$replaceExtensionsV1beta1NamespacedIngressStatus$Status$200 { @@ -22435,10 +22435,6 @@ export interface Response$replaceExtensionsV1beta1NamespacedIngressStatus$Status "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$extensions$v1beta1$Ingress; } export interface Parameter$patchExtensionsV1beta1NamespacedIngressStatus { - /** name of the Ingress */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -22447,6 +22443,10 @@ export interface Parameter$patchExtensionsV1beta1NamespacedIngressStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Ingress */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchExtensionsV1beta1NamespacedIngressStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchExtensionsV1beta1NamespacedIngressStatus$Status$200 { @@ -22508,8 +22508,6 @@ export interface Parameter$watchExtensionsV1beta1NamespacedIngressList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -22518,6 +22516,8 @@ export interface Parameter$watchExtensionsV1beta1NamespacedIngressList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchExtensionsV1beta1NamespacedIngressList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -22545,10 +22545,6 @@ export interface Parameter$watchExtensionsV1beta1NamespacedIngress { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the Ingress */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -22557,6 +22553,10 @@ export interface Parameter$watchExtensionsV1beta1NamespacedIngress { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the Ingress */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchExtensionsV1beta1NamespacedIngress$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -22677,14 +22677,14 @@ export interface Response$deleteFlowcontrolApiserverV1alpha1CollectionFlowSchema "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readFlowcontrolApiserverV1alpha1FlowSchema { - /** name of the FlowSchema */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the FlowSchema */ + name: string; } export interface Response$readFlowcontrolApiserverV1alpha1FlowSchema$Status$200 { "application/json": Schemas.io$k8s$api$flowcontrol$v1alpha1$FlowSchema; @@ -22692,14 +22692,14 @@ export interface Response$readFlowcontrolApiserverV1alpha1FlowSchema$Status$200 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1alpha1$FlowSchema; } export interface Parameter$replaceFlowcontrolApiserverV1alpha1FlowSchema { - /** name of the FlowSchema */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the FlowSchema */ + name: string; } export type RequestBody$replaceFlowcontrolApiserverV1alpha1FlowSchema = RequestBodies.io$k8s$api$flowcontrol$v1alpha1$FlowSchema.Content; export interface Response$replaceFlowcontrolApiserverV1alpha1FlowSchema$Status$200 { @@ -22713,8 +22713,6 @@ export interface Response$replaceFlowcontrolApiserverV1alpha1FlowSchema$Status$2 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1alpha1$FlowSchema; } export interface Parameter$deleteFlowcontrolApiserverV1alpha1FlowSchema { - /** name of the FlowSchema */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -22725,6 +22723,8 @@ export interface Parameter$deleteFlowcontrolApiserverV1alpha1FlowSchema { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the FlowSchema */ + name: string; } export type RequestBody$deleteFlowcontrolApiserverV1alpha1FlowSchema = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteFlowcontrolApiserverV1alpha1FlowSchema$Status$200 { @@ -22738,8 +22738,6 @@ export interface Response$deleteFlowcontrolApiserverV1alpha1FlowSchema$Status$20 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchFlowcontrolApiserverV1alpha1FlowSchema { - /** name of the FlowSchema */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -22748,6 +22746,8 @@ export interface Parameter$patchFlowcontrolApiserverV1alpha1FlowSchema { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the FlowSchema */ + name: string; } export type RequestBody$patchFlowcontrolApiserverV1alpha1FlowSchema = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchFlowcontrolApiserverV1alpha1FlowSchema$Status$200 { @@ -22756,10 +22756,10 @@ export interface Response$patchFlowcontrolApiserverV1alpha1FlowSchema$Status$200 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1alpha1$FlowSchema; } export interface Parameter$readFlowcontrolApiserverV1alpha1FlowSchemaStatus { - /** name of the FlowSchema */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** name of the FlowSchema */ + name: string; } export interface Response$readFlowcontrolApiserverV1alpha1FlowSchemaStatus$Status$200 { "application/json": Schemas.io$k8s$api$flowcontrol$v1alpha1$FlowSchema; @@ -22767,14 +22767,14 @@ export interface Response$readFlowcontrolApiserverV1alpha1FlowSchemaStatus$Statu "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1alpha1$FlowSchema; } export interface Parameter$replaceFlowcontrolApiserverV1alpha1FlowSchemaStatus { - /** name of the FlowSchema */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the FlowSchema */ + name: string; } export type RequestBody$replaceFlowcontrolApiserverV1alpha1FlowSchemaStatus = RequestBodies.io$k8s$api$flowcontrol$v1alpha1$FlowSchema.Content; export interface Response$replaceFlowcontrolApiserverV1alpha1FlowSchemaStatus$Status$200 { @@ -22788,8 +22788,6 @@ export interface Response$replaceFlowcontrolApiserverV1alpha1FlowSchemaStatus$St "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1alpha1$FlowSchema; } export interface Parameter$patchFlowcontrolApiserverV1alpha1FlowSchemaStatus { - /** name of the FlowSchema */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -22798,6 +22796,8 @@ export interface Parameter$patchFlowcontrolApiserverV1alpha1FlowSchemaStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the FlowSchema */ + name: string; } export type RequestBody$patchFlowcontrolApiserverV1alpha1FlowSchemaStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchFlowcontrolApiserverV1alpha1FlowSchemaStatus$Status$200 { @@ -22907,14 +22907,14 @@ export interface Response$deleteFlowcontrolApiserverV1alpha1CollectionPriorityLe "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readFlowcontrolApiserverV1alpha1PriorityLevelConfiguration { - /** name of the PriorityLevelConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the PriorityLevelConfiguration */ + name: string; } export interface Response$readFlowcontrolApiserverV1alpha1PriorityLevelConfiguration$Status$200 { "application/json": Schemas.io$k8s$api$flowcontrol$v1alpha1$PriorityLevelConfiguration; @@ -22922,14 +22922,14 @@ export interface Response$readFlowcontrolApiserverV1alpha1PriorityLevelConfigura "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1alpha1$PriorityLevelConfiguration; } export interface Parameter$replaceFlowcontrolApiserverV1alpha1PriorityLevelConfiguration { - /** name of the PriorityLevelConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the PriorityLevelConfiguration */ + name: string; } export type RequestBody$replaceFlowcontrolApiserverV1alpha1PriorityLevelConfiguration = RequestBodies.io$k8s$api$flowcontrol$v1alpha1$PriorityLevelConfiguration.Content; export interface Response$replaceFlowcontrolApiserverV1alpha1PriorityLevelConfiguration$Status$200 { @@ -22943,8 +22943,6 @@ export interface Response$replaceFlowcontrolApiserverV1alpha1PriorityLevelConfig "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1alpha1$PriorityLevelConfiguration; } export interface Parameter$deleteFlowcontrolApiserverV1alpha1PriorityLevelConfiguration { - /** name of the PriorityLevelConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -22955,6 +22953,8 @@ export interface Parameter$deleteFlowcontrolApiserverV1alpha1PriorityLevelConfig orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the PriorityLevelConfiguration */ + name: string; } export type RequestBody$deleteFlowcontrolApiserverV1alpha1PriorityLevelConfiguration = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteFlowcontrolApiserverV1alpha1PriorityLevelConfiguration$Status$200 { @@ -22968,8 +22968,6 @@ export interface Response$deleteFlowcontrolApiserverV1alpha1PriorityLevelConfigu "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchFlowcontrolApiserverV1alpha1PriorityLevelConfiguration { - /** name of the PriorityLevelConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -22978,6 +22976,8 @@ export interface Parameter$patchFlowcontrolApiserverV1alpha1PriorityLevelConfigu fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the PriorityLevelConfiguration */ + name: string; } export type RequestBody$patchFlowcontrolApiserverV1alpha1PriorityLevelConfiguration = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchFlowcontrolApiserverV1alpha1PriorityLevelConfiguration$Status$200 { @@ -22986,10 +22986,10 @@ export interface Response$patchFlowcontrolApiserverV1alpha1PriorityLevelConfigur "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1alpha1$PriorityLevelConfiguration; } export interface Parameter$readFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus { - /** name of the PriorityLevelConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** name of the PriorityLevelConfiguration */ + name: string; } export interface Response$readFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus$Status$200 { "application/json": Schemas.io$k8s$api$flowcontrol$v1alpha1$PriorityLevelConfiguration; @@ -22997,14 +22997,14 @@ export interface Response$readFlowcontrolApiserverV1alpha1PriorityLevelConfigura "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1alpha1$PriorityLevelConfiguration; } export interface Parameter$replaceFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus { - /** name of the PriorityLevelConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the PriorityLevelConfiguration */ + name: string; } export type RequestBody$replaceFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus = RequestBodies.io$k8s$api$flowcontrol$v1alpha1$PriorityLevelConfiguration.Content; export interface Response$replaceFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus$Status$200 { @@ -23018,8 +23018,6 @@ export interface Response$replaceFlowcontrolApiserverV1alpha1PriorityLevelConfig "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1alpha1$PriorityLevelConfiguration; } export interface Parameter$patchFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus { - /** name of the PriorityLevelConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -23028,6 +23026,8 @@ export interface Parameter$patchFlowcontrolApiserverV1alpha1PriorityLevelConfigu fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the PriorityLevelConfiguration */ + name: string; } export type RequestBody$patchFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus$Status$200 { @@ -23089,8 +23089,6 @@ export interface Parameter$watchFlowcontrolApiserverV1alpha1FlowSchema { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the FlowSchema */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -23099,6 +23097,8 @@ export interface Parameter$watchFlowcontrolApiserverV1alpha1FlowSchema { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the FlowSchema */ + name: string; } export interface Response$watchFlowcontrolApiserverV1alpha1FlowSchema$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -23161,8 +23161,6 @@ export interface Parameter$watchFlowcontrolApiserverV1alpha1PriorityLevelConfigu * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the PriorityLevelConfiguration */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -23171,6 +23169,8 @@ export interface Parameter$watchFlowcontrolApiserverV1alpha1PriorityLevelConfigu timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the PriorityLevelConfiguration */ + name: string; } export interface Response$watchFlowcontrolApiserverV1alpha1PriorityLevelConfiguration$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -23190,8 +23190,6 @@ export interface Response$getNetworkingV1APIResources$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; } export interface Parameter$listNetworkingV1NamespacedNetworkPolicy { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -23218,6 +23216,8 @@ export interface Parameter$listNetworkingV1NamespacedNetworkPolicy { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listNetworkingV1NamespacedNetworkPolicy$Status$200 { "application/json": Schemas.io$k8s$api$networking$v1$NetworkPolicyList; @@ -23227,14 +23227,14 @@ export interface Response$listNetworkingV1NamespacedNetworkPolicy$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$networking$v1$NetworkPolicyList; } export interface Parameter$createNetworkingV1NamespacedNetworkPolicy { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createNetworkingV1NamespacedNetworkPolicy = RequestBodies.io$k8s$api$networking$v1$NetworkPolicy.Content; export interface Response$createNetworkingV1NamespacedNetworkPolicy$Status$200 { @@ -23253,8 +23253,6 @@ export interface Response$createNetworkingV1NamespacedNetworkPolicy$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$NetworkPolicy; } export interface Parameter$deleteNetworkingV1CollectionNamespacedNetworkPolicy { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -23289,6 +23287,8 @@ export interface Parameter$deleteNetworkingV1CollectionNamespacedNetworkPolicy { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteNetworkingV1CollectionNamespacedNetworkPolicy = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteNetworkingV1CollectionNamespacedNetworkPolicy$Status$200 { @@ -23297,16 +23297,16 @@ export interface Response$deleteNetworkingV1CollectionNamespacedNetworkPolicy$St "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readNetworkingV1NamespacedNetworkPolicy { - /** name of the NetworkPolicy */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the NetworkPolicy */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readNetworkingV1NamespacedNetworkPolicy$Status$200 { "application/json": Schemas.io$k8s$api$networking$v1$NetworkPolicy; @@ -23314,16 +23314,16 @@ export interface Response$readNetworkingV1NamespacedNetworkPolicy$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$NetworkPolicy; } export interface Parameter$replaceNetworkingV1NamespacedNetworkPolicy { - /** name of the NetworkPolicy */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the NetworkPolicy */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceNetworkingV1NamespacedNetworkPolicy = RequestBodies.io$k8s$api$networking$v1$NetworkPolicy.Content; export interface Response$replaceNetworkingV1NamespacedNetworkPolicy$Status$200 { @@ -23337,10 +23337,6 @@ export interface Response$replaceNetworkingV1NamespacedNetworkPolicy$Status$201 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$NetworkPolicy; } export interface Parameter$deleteNetworkingV1NamespacedNetworkPolicy { - /** name of the NetworkPolicy */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -23351,6 +23347,10 @@ export interface Parameter$deleteNetworkingV1NamespacedNetworkPolicy { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the NetworkPolicy */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteNetworkingV1NamespacedNetworkPolicy = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteNetworkingV1NamespacedNetworkPolicy$Status$200 { @@ -23364,10 +23364,6 @@ export interface Response$deleteNetworkingV1NamespacedNetworkPolicy$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchNetworkingV1NamespacedNetworkPolicy { - /** name of the NetworkPolicy */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -23376,6 +23372,10 @@ export interface Parameter$patchNetworkingV1NamespacedNetworkPolicy { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the NetworkPolicy */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchNetworkingV1NamespacedNetworkPolicy = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchNetworkingV1NamespacedNetworkPolicy$Status$200 { @@ -23437,8 +23437,6 @@ export interface Parameter$watchNetworkingV1NamespacedNetworkPolicyList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -23447,6 +23445,8 @@ export interface Parameter$watchNetworkingV1NamespacedNetworkPolicyList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchNetworkingV1NamespacedNetworkPolicyList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -23474,10 +23474,6 @@ export interface Parameter$watchNetworkingV1NamespacedNetworkPolicy { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the NetworkPolicy */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -23486,6 +23482,10 @@ export interface Parameter$watchNetworkingV1NamespacedNetworkPolicy { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the NetworkPolicy */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchNetworkingV1NamespacedNetworkPolicy$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -23636,14 +23636,14 @@ export interface Response$deleteNetworkingV1beta1CollectionIngressClass$Status$2 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readNetworkingV1beta1IngressClass { - /** name of the IngressClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the IngressClass */ + name: string; } export interface Response$readNetworkingV1beta1IngressClass$Status$200 { "application/json": Schemas.io$k8s$api$networking$v1beta1$IngressClass; @@ -23651,14 +23651,14 @@ export interface Response$readNetworkingV1beta1IngressClass$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1beta1$IngressClass; } export interface Parameter$replaceNetworkingV1beta1IngressClass { - /** name of the IngressClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the IngressClass */ + name: string; } export type RequestBody$replaceNetworkingV1beta1IngressClass = RequestBodies.io$k8s$api$networking$v1beta1$IngressClass.Content; export interface Response$replaceNetworkingV1beta1IngressClass$Status$200 { @@ -23672,8 +23672,6 @@ export interface Response$replaceNetworkingV1beta1IngressClass$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1beta1$IngressClass; } export interface Parameter$deleteNetworkingV1beta1IngressClass { - /** name of the IngressClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -23684,6 +23682,8 @@ export interface Parameter$deleteNetworkingV1beta1IngressClass { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the IngressClass */ + name: string; } export type RequestBody$deleteNetworkingV1beta1IngressClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteNetworkingV1beta1IngressClass$Status$200 { @@ -23697,8 +23697,6 @@ export interface Response$deleteNetworkingV1beta1IngressClass$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchNetworkingV1beta1IngressClass { - /** name of the IngressClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -23707,6 +23705,8 @@ export interface Parameter$patchNetworkingV1beta1IngressClass { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the IngressClass */ + name: string; } export type RequestBody$patchNetworkingV1beta1IngressClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchNetworkingV1beta1IngressClass$Status$200 { @@ -23750,8 +23750,6 @@ export interface Response$listNetworkingV1beta1IngressForAllNamespaces$Status$20 "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$networking$v1beta1$IngressList; } export interface Parameter$listNetworkingV1beta1NamespacedIngress { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -23778,6 +23776,8 @@ export interface Parameter$listNetworkingV1beta1NamespacedIngress { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listNetworkingV1beta1NamespacedIngress$Status$200 { "application/json": Schemas.io$k8s$api$networking$v1beta1$IngressList; @@ -23787,14 +23787,14 @@ export interface Response$listNetworkingV1beta1NamespacedIngress$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$networking$v1beta1$IngressList; } export interface Parameter$createNetworkingV1beta1NamespacedIngress { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createNetworkingV1beta1NamespacedIngress = RequestBodies.io$k8s$api$networking$v1beta1$Ingress.Content; export interface Response$createNetworkingV1beta1NamespacedIngress$Status$200 { @@ -23813,8 +23813,6 @@ export interface Response$createNetworkingV1beta1NamespacedIngress$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1beta1$Ingress; } export interface Parameter$deleteNetworkingV1beta1CollectionNamespacedIngress { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -23849,6 +23847,8 @@ export interface Parameter$deleteNetworkingV1beta1CollectionNamespacedIngress { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteNetworkingV1beta1CollectionNamespacedIngress = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteNetworkingV1beta1CollectionNamespacedIngress$Status$200 { @@ -23857,16 +23857,16 @@ export interface Response$deleteNetworkingV1beta1CollectionNamespacedIngress$Sta "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readNetworkingV1beta1NamespacedIngress { - /** name of the Ingress */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the Ingress */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readNetworkingV1beta1NamespacedIngress$Status$200 { "application/json": Schemas.io$k8s$api$networking$v1beta1$Ingress; @@ -23874,16 +23874,16 @@ export interface Response$readNetworkingV1beta1NamespacedIngress$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1beta1$Ingress; } export interface Parameter$replaceNetworkingV1beta1NamespacedIngress { - /** name of the Ingress */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Ingress */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceNetworkingV1beta1NamespacedIngress = RequestBodies.io$k8s$api$networking$v1beta1$Ingress.Content; export interface Response$replaceNetworkingV1beta1NamespacedIngress$Status$200 { @@ -23897,10 +23897,6 @@ export interface Response$replaceNetworkingV1beta1NamespacedIngress$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1beta1$Ingress; } export interface Parameter$deleteNetworkingV1beta1NamespacedIngress { - /** name of the Ingress */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -23911,6 +23907,10 @@ export interface Parameter$deleteNetworkingV1beta1NamespacedIngress { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the Ingress */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteNetworkingV1beta1NamespacedIngress = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteNetworkingV1beta1NamespacedIngress$Status$200 { @@ -23924,10 +23924,6 @@ export interface Response$deleteNetworkingV1beta1NamespacedIngress$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchNetworkingV1beta1NamespacedIngress { - /** name of the Ingress */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -23936,6 +23932,10 @@ export interface Parameter$patchNetworkingV1beta1NamespacedIngress { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Ingress */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchNetworkingV1beta1NamespacedIngress = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchNetworkingV1beta1NamespacedIngress$Status$200 { @@ -23944,12 +23944,12 @@ export interface Response$patchNetworkingV1beta1NamespacedIngress$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1beta1$Ingress; } export interface Parameter$readNetworkingV1beta1NamespacedIngressStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the Ingress */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readNetworkingV1beta1NamespacedIngressStatus$Status$200 { "application/json": Schemas.io$k8s$api$networking$v1beta1$Ingress; @@ -23957,16 +23957,16 @@ export interface Response$readNetworkingV1beta1NamespacedIngressStatus$Status$20 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1beta1$Ingress; } export interface Parameter$replaceNetworkingV1beta1NamespacedIngressStatus { - /** name of the Ingress */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Ingress */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceNetworkingV1beta1NamespacedIngressStatus = RequestBodies.io$k8s$api$networking$v1beta1$Ingress.Content; export interface Response$replaceNetworkingV1beta1NamespacedIngressStatus$Status$200 { @@ -23980,10 +23980,6 @@ export interface Response$replaceNetworkingV1beta1NamespacedIngressStatus$Status "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1beta1$Ingress; } export interface Parameter$patchNetworkingV1beta1NamespacedIngressStatus { - /** name of the Ingress */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -23992,6 +23988,10 @@ export interface Parameter$patchNetworkingV1beta1NamespacedIngressStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Ingress */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchNetworkingV1beta1NamespacedIngressStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchNetworkingV1beta1NamespacedIngressStatus$Status$200 { @@ -24053,8 +24053,6 @@ export interface Parameter$watchNetworkingV1beta1IngressClass { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the IngressClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -24063,6 +24061,8 @@ export interface Parameter$watchNetworkingV1beta1IngressClass { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the IngressClass */ + name: string; } export interface Response$watchNetworkingV1beta1IngressClass$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -24125,8 +24125,6 @@ export interface Parameter$watchNetworkingV1beta1NamespacedIngressList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -24135,6 +24133,8 @@ export interface Parameter$watchNetworkingV1beta1NamespacedIngressList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchNetworkingV1beta1NamespacedIngressList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -24162,10 +24162,6 @@ export interface Parameter$watchNetworkingV1beta1NamespacedIngress { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the Ingress */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -24174,6 +24170,10 @@ export interface Parameter$watchNetworkingV1beta1NamespacedIngress { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the Ingress */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchNetworkingV1beta1NamespacedIngress$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -24294,14 +24294,14 @@ export interface Response$deleteNodeV1alpha1CollectionRuntimeClass$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readNodeV1alpha1RuntimeClass { - /** name of the RuntimeClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the RuntimeClass */ + name: string; } export interface Response$readNodeV1alpha1RuntimeClass$Status$200 { "application/json": Schemas.io$k8s$api$node$v1alpha1$RuntimeClass; @@ -24309,14 +24309,14 @@ export interface Response$readNodeV1alpha1RuntimeClass$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$node$v1alpha1$RuntimeClass; } export interface Parameter$replaceNodeV1alpha1RuntimeClass { - /** name of the RuntimeClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the RuntimeClass */ + name: string; } export type RequestBody$replaceNodeV1alpha1RuntimeClass = RequestBodies.io$k8s$api$node$v1alpha1$RuntimeClass.Content; export interface Response$replaceNodeV1alpha1RuntimeClass$Status$200 { @@ -24330,8 +24330,6 @@ export interface Response$replaceNodeV1alpha1RuntimeClass$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$node$v1alpha1$RuntimeClass; } export interface Parameter$deleteNodeV1alpha1RuntimeClass { - /** name of the RuntimeClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -24342,6 +24340,8 @@ export interface Parameter$deleteNodeV1alpha1RuntimeClass { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the RuntimeClass */ + name: string; } export type RequestBody$deleteNodeV1alpha1RuntimeClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteNodeV1alpha1RuntimeClass$Status$200 { @@ -24355,8 +24355,6 @@ export interface Response$deleteNodeV1alpha1RuntimeClass$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchNodeV1alpha1RuntimeClass { - /** name of the RuntimeClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -24365,6 +24363,8 @@ export interface Parameter$patchNodeV1alpha1RuntimeClass { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the RuntimeClass */ + name: string; } export type RequestBody$patchNodeV1alpha1RuntimeClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchNodeV1alpha1RuntimeClass$Status$200 { @@ -24426,8 +24426,6 @@ export interface Parameter$watchNodeV1alpha1RuntimeClass { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the RuntimeClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -24436,6 +24434,8 @@ export interface Parameter$watchNodeV1alpha1RuntimeClass { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the RuntimeClass */ + name: string; } export interface Response$watchNodeV1alpha1RuntimeClass$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -24551,14 +24551,14 @@ export interface Response$deleteNodeV1beta1CollectionRuntimeClass$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readNodeV1beta1RuntimeClass { - /** name of the RuntimeClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the RuntimeClass */ + name: string; } export interface Response$readNodeV1beta1RuntimeClass$Status$200 { "application/json": Schemas.io$k8s$api$node$v1beta1$RuntimeClass; @@ -24566,14 +24566,14 @@ export interface Response$readNodeV1beta1RuntimeClass$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$node$v1beta1$RuntimeClass; } export interface Parameter$replaceNodeV1beta1RuntimeClass { - /** name of the RuntimeClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the RuntimeClass */ + name: string; } export type RequestBody$replaceNodeV1beta1RuntimeClass = RequestBodies.io$k8s$api$node$v1beta1$RuntimeClass.Content; export interface Response$replaceNodeV1beta1RuntimeClass$Status$200 { @@ -24587,8 +24587,6 @@ export interface Response$replaceNodeV1beta1RuntimeClass$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$node$v1beta1$RuntimeClass; } export interface Parameter$deleteNodeV1beta1RuntimeClass { - /** name of the RuntimeClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -24599,6 +24597,8 @@ export interface Parameter$deleteNodeV1beta1RuntimeClass { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the RuntimeClass */ + name: string; } export type RequestBody$deleteNodeV1beta1RuntimeClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteNodeV1beta1RuntimeClass$Status$200 { @@ -24612,8 +24612,6 @@ export interface Response$deleteNodeV1beta1RuntimeClass$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchNodeV1beta1RuntimeClass { - /** name of the RuntimeClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -24622,6 +24620,8 @@ export interface Parameter$patchNodeV1beta1RuntimeClass { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the RuntimeClass */ + name: string; } export type RequestBody$patchNodeV1beta1RuntimeClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchNodeV1beta1RuntimeClass$Status$200 { @@ -24683,8 +24683,6 @@ export interface Parameter$watchNodeV1beta1RuntimeClass { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the RuntimeClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -24693,6 +24691,8 @@ export interface Parameter$watchNodeV1beta1RuntimeClass { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the RuntimeClass */ + name: string; } export interface Response$watchNodeV1beta1RuntimeClass$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -24712,8 +24712,6 @@ export interface Response$getPolicyV1beta1APIResources$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; } export interface Parameter$listPolicyV1beta1NamespacedPodDisruptionBudget { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -24740,6 +24738,8 @@ export interface Parameter$listPolicyV1beta1NamespacedPodDisruptionBudget { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listPolicyV1beta1NamespacedPodDisruptionBudget$Status$200 { "application/json": Schemas.io$k8s$api$policy$v1beta1$PodDisruptionBudgetList; @@ -24749,14 +24749,14 @@ export interface Response$listPolicyV1beta1NamespacedPodDisruptionBudget$Status$ "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$policy$v1beta1$PodDisruptionBudgetList; } export interface Parameter$createPolicyV1beta1NamespacedPodDisruptionBudget { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createPolicyV1beta1NamespacedPodDisruptionBudget = RequestBodies.io$k8s$api$policy$v1beta1$PodDisruptionBudget.Content; export interface Response$createPolicyV1beta1NamespacedPodDisruptionBudget$Status$200 { @@ -24775,8 +24775,6 @@ export interface Response$createPolicyV1beta1NamespacedPodDisruptionBudget$Statu "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$policy$v1beta1$PodDisruptionBudget; } export interface Parameter$deletePolicyV1beta1CollectionNamespacedPodDisruptionBudget { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -24811,6 +24809,8 @@ export interface Parameter$deletePolicyV1beta1CollectionNamespacedPodDisruptionB timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deletePolicyV1beta1CollectionNamespacedPodDisruptionBudget = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deletePolicyV1beta1CollectionNamespacedPodDisruptionBudget$Status$200 { @@ -24819,16 +24819,16 @@ export interface Response$deletePolicyV1beta1CollectionNamespacedPodDisruptionBu "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readPolicyV1beta1NamespacedPodDisruptionBudget { - /** name of the PodDisruptionBudget */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the PodDisruptionBudget */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readPolicyV1beta1NamespacedPodDisruptionBudget$Status$200 { "application/json": Schemas.io$k8s$api$policy$v1beta1$PodDisruptionBudget; @@ -24836,16 +24836,16 @@ export interface Response$readPolicyV1beta1NamespacedPodDisruptionBudget$Status$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$policy$v1beta1$PodDisruptionBudget; } export interface Parameter$replacePolicyV1beta1NamespacedPodDisruptionBudget { - /** name of the PodDisruptionBudget */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the PodDisruptionBudget */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replacePolicyV1beta1NamespacedPodDisruptionBudget = RequestBodies.io$k8s$api$policy$v1beta1$PodDisruptionBudget.Content; export interface Response$replacePolicyV1beta1NamespacedPodDisruptionBudget$Status$200 { @@ -24859,10 +24859,6 @@ export interface Response$replacePolicyV1beta1NamespacedPodDisruptionBudget$Stat "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$policy$v1beta1$PodDisruptionBudget; } export interface Parameter$deletePolicyV1beta1NamespacedPodDisruptionBudget { - /** name of the PodDisruptionBudget */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -24873,6 +24869,10 @@ export interface Parameter$deletePolicyV1beta1NamespacedPodDisruptionBudget { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the PodDisruptionBudget */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deletePolicyV1beta1NamespacedPodDisruptionBudget = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deletePolicyV1beta1NamespacedPodDisruptionBudget$Status$200 { @@ -24886,10 +24886,6 @@ export interface Response$deletePolicyV1beta1NamespacedPodDisruptionBudget$Statu "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchPolicyV1beta1NamespacedPodDisruptionBudget { - /** name of the PodDisruptionBudget */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -24898,6 +24894,10 @@ export interface Parameter$patchPolicyV1beta1NamespacedPodDisruptionBudget { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the PodDisruptionBudget */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchPolicyV1beta1NamespacedPodDisruptionBudget = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchPolicyV1beta1NamespacedPodDisruptionBudget$Status$200 { @@ -24906,12 +24906,12 @@ export interface Response$patchPolicyV1beta1NamespacedPodDisruptionBudget$Status "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$policy$v1beta1$PodDisruptionBudget; } export interface Parameter$readPolicyV1beta1NamespacedPodDisruptionBudgetStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the PodDisruptionBudget */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readPolicyV1beta1NamespacedPodDisruptionBudgetStatus$Status$200 { "application/json": Schemas.io$k8s$api$policy$v1beta1$PodDisruptionBudget; @@ -24919,16 +24919,16 @@ export interface Response$readPolicyV1beta1NamespacedPodDisruptionBudgetStatus$S "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$policy$v1beta1$PodDisruptionBudget; } export interface Parameter$replacePolicyV1beta1NamespacedPodDisruptionBudgetStatus { - /** name of the PodDisruptionBudget */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the PodDisruptionBudget */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replacePolicyV1beta1NamespacedPodDisruptionBudgetStatus = RequestBodies.io$k8s$api$policy$v1beta1$PodDisruptionBudget.Content; export interface Response$replacePolicyV1beta1NamespacedPodDisruptionBudgetStatus$Status$200 { @@ -24942,10 +24942,6 @@ export interface Response$replacePolicyV1beta1NamespacedPodDisruptionBudgetStatu "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$policy$v1beta1$PodDisruptionBudget; } export interface Parameter$patchPolicyV1beta1NamespacedPodDisruptionBudgetStatus { - /** name of the PodDisruptionBudget */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -24954,6 +24950,10 @@ export interface Parameter$patchPolicyV1beta1NamespacedPodDisruptionBudgetStatus fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the PodDisruptionBudget */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchPolicyV1beta1NamespacedPodDisruptionBudgetStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchPolicyV1beta1NamespacedPodDisruptionBudgetStatus$Status$200 { @@ -25098,14 +25098,14 @@ export interface Response$deletePolicyV1beta1CollectionPodSecurityPolicy$Status$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readPolicyV1beta1PodSecurityPolicy { - /** name of the PodSecurityPolicy */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the PodSecurityPolicy */ + name: string; } export interface Response$readPolicyV1beta1PodSecurityPolicy$Status$200 { "application/json": Schemas.io$k8s$api$policy$v1beta1$PodSecurityPolicy; @@ -25113,14 +25113,14 @@ export interface Response$readPolicyV1beta1PodSecurityPolicy$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$policy$v1beta1$PodSecurityPolicy; } export interface Parameter$replacePolicyV1beta1PodSecurityPolicy { - /** name of the PodSecurityPolicy */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the PodSecurityPolicy */ + name: string; } export type RequestBody$replacePolicyV1beta1PodSecurityPolicy = RequestBodies.io$k8s$api$policy$v1beta1$PodSecurityPolicy.Content; export interface Response$replacePolicyV1beta1PodSecurityPolicy$Status$200 { @@ -25134,8 +25134,6 @@ export interface Response$replacePolicyV1beta1PodSecurityPolicy$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$policy$v1beta1$PodSecurityPolicy; } export interface Parameter$deletePolicyV1beta1PodSecurityPolicy { - /** name of the PodSecurityPolicy */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -25146,6 +25144,8 @@ export interface Parameter$deletePolicyV1beta1PodSecurityPolicy { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the PodSecurityPolicy */ + name: string; } export type RequestBody$deletePolicyV1beta1PodSecurityPolicy = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deletePolicyV1beta1PodSecurityPolicy$Status$200 { @@ -25159,8 +25159,6 @@ export interface Response$deletePolicyV1beta1PodSecurityPolicy$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$policy$v1beta1$PodSecurityPolicy; } export interface Parameter$patchPolicyV1beta1PodSecurityPolicy { - /** name of the PodSecurityPolicy */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -25169,6 +25167,8 @@ export interface Parameter$patchPolicyV1beta1PodSecurityPolicy { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the PodSecurityPolicy */ + name: string; } export type RequestBody$patchPolicyV1beta1PodSecurityPolicy = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchPolicyV1beta1PodSecurityPolicy$Status$200 { @@ -25195,8 +25195,6 @@ export interface Parameter$watchPolicyV1beta1NamespacedPodDisruptionBudgetList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -25205,6 +25203,8 @@ export interface Parameter$watchPolicyV1beta1NamespacedPodDisruptionBudgetList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchPolicyV1beta1NamespacedPodDisruptionBudgetList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -25232,10 +25232,6 @@ export interface Parameter$watchPolicyV1beta1NamespacedPodDisruptionBudget { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the PodDisruptionBudget */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -25244,6 +25240,10 @@ export interface Parameter$watchPolicyV1beta1NamespacedPodDisruptionBudget { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the PodDisruptionBudget */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchPolicyV1beta1NamespacedPodDisruptionBudget$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -25341,8 +25341,6 @@ export interface Parameter$watchPolicyV1beta1PodSecurityPolicy { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the PodSecurityPolicy */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -25351,6 +25349,8 @@ export interface Parameter$watchPolicyV1beta1PodSecurityPolicy { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the PodSecurityPolicy */ + name: string; } export interface Response$watchPolicyV1beta1PodSecurityPolicy$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -25471,10 +25471,10 @@ export interface Response$deleteRbacAuthorizationV1CollectionClusterRoleBinding$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readRbacAuthorizationV1ClusterRoleBinding { - /** name of the ClusterRoleBinding */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** name of the ClusterRoleBinding */ + name: string; } export interface Response$readRbacAuthorizationV1ClusterRoleBinding$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1$ClusterRoleBinding; @@ -25482,14 +25482,14 @@ export interface Response$readRbacAuthorizationV1ClusterRoleBinding$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$ClusterRoleBinding; } export interface Parameter$replaceRbacAuthorizationV1ClusterRoleBinding { - /** name of the ClusterRoleBinding */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the ClusterRoleBinding */ + name: string; } export type RequestBody$replaceRbacAuthorizationV1ClusterRoleBinding = RequestBodies.io$k8s$api$rbac$v1$ClusterRoleBinding.Content; export interface Response$replaceRbacAuthorizationV1ClusterRoleBinding$Status$200 { @@ -25503,8 +25503,6 @@ export interface Response$replaceRbacAuthorizationV1ClusterRoleBinding$Status$20 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$ClusterRoleBinding; } export interface Parameter$deleteRbacAuthorizationV1ClusterRoleBinding { - /** name of the ClusterRoleBinding */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -25515,6 +25513,8 @@ export interface Parameter$deleteRbacAuthorizationV1ClusterRoleBinding { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the ClusterRoleBinding */ + name: string; } export type RequestBody$deleteRbacAuthorizationV1ClusterRoleBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteRbacAuthorizationV1ClusterRoleBinding$Status$200 { @@ -25528,8 +25528,6 @@ export interface Response$deleteRbacAuthorizationV1ClusterRoleBinding$Status$202 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchRbacAuthorizationV1ClusterRoleBinding { - /** name of the ClusterRoleBinding */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -25538,6 +25536,8 @@ export interface Parameter$patchRbacAuthorizationV1ClusterRoleBinding { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the ClusterRoleBinding */ + name: string; } export type RequestBody$patchRbacAuthorizationV1ClusterRoleBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchRbacAuthorizationV1ClusterRoleBinding$Status$200 { @@ -25647,10 +25647,10 @@ export interface Response$deleteRbacAuthorizationV1CollectionClusterRole$Status$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readRbacAuthorizationV1ClusterRole { - /** name of the ClusterRole */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** name of the ClusterRole */ + name: string; } export interface Response$readRbacAuthorizationV1ClusterRole$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1$ClusterRole; @@ -25658,14 +25658,14 @@ export interface Response$readRbacAuthorizationV1ClusterRole$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$ClusterRole; } export interface Parameter$replaceRbacAuthorizationV1ClusterRole { - /** name of the ClusterRole */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the ClusterRole */ + name: string; } export type RequestBody$replaceRbacAuthorizationV1ClusterRole = RequestBodies.io$k8s$api$rbac$v1$ClusterRole.Content; export interface Response$replaceRbacAuthorizationV1ClusterRole$Status$200 { @@ -25679,8 +25679,6 @@ export interface Response$replaceRbacAuthorizationV1ClusterRole$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$ClusterRole; } export interface Parameter$deleteRbacAuthorizationV1ClusterRole { - /** name of the ClusterRole */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -25691,6 +25689,8 @@ export interface Parameter$deleteRbacAuthorizationV1ClusterRole { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the ClusterRole */ + name: string; } export type RequestBody$deleteRbacAuthorizationV1ClusterRole = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteRbacAuthorizationV1ClusterRole$Status$200 { @@ -25704,8 +25704,6 @@ export interface Response$deleteRbacAuthorizationV1ClusterRole$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchRbacAuthorizationV1ClusterRole { - /** name of the ClusterRole */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -25714,6 +25712,8 @@ export interface Parameter$patchRbacAuthorizationV1ClusterRole { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the ClusterRole */ + name: string; } export type RequestBody$patchRbacAuthorizationV1ClusterRole = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchRbacAuthorizationV1ClusterRole$Status$200 { @@ -25722,8 +25722,6 @@ export interface Response$patchRbacAuthorizationV1ClusterRole$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$ClusterRole; } export interface Parameter$listRbacAuthorizationV1NamespacedRoleBinding { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -25750,6 +25748,8 @@ export interface Parameter$listRbacAuthorizationV1NamespacedRoleBinding { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listRbacAuthorizationV1NamespacedRoleBinding$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1$RoleBindingList; @@ -25759,14 +25759,14 @@ export interface Response$listRbacAuthorizationV1NamespacedRoleBinding$Status$20 "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$rbac$v1$RoleBindingList; } export interface Parameter$createRbacAuthorizationV1NamespacedRoleBinding { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createRbacAuthorizationV1NamespacedRoleBinding = RequestBodies.io$k8s$api$rbac$v1$RoleBinding.Content; export interface Response$createRbacAuthorizationV1NamespacedRoleBinding$Status$200 { @@ -25785,8 +25785,6 @@ export interface Response$createRbacAuthorizationV1NamespacedRoleBinding$Status$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$RoleBinding; } export interface Parameter$deleteRbacAuthorizationV1CollectionNamespacedRoleBinding { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -25821,6 +25819,8 @@ export interface Parameter$deleteRbacAuthorizationV1CollectionNamespacedRoleBind timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteRbacAuthorizationV1CollectionNamespacedRoleBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteRbacAuthorizationV1CollectionNamespacedRoleBinding$Status$200 { @@ -25829,12 +25829,12 @@ export interface Response$deleteRbacAuthorizationV1CollectionNamespacedRoleBindi "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readRbacAuthorizationV1NamespacedRoleBinding { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the RoleBinding */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readRbacAuthorizationV1NamespacedRoleBinding$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1$RoleBinding; @@ -25842,16 +25842,16 @@ export interface Response$readRbacAuthorizationV1NamespacedRoleBinding$Status$20 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$RoleBinding; } export interface Parameter$replaceRbacAuthorizationV1NamespacedRoleBinding { - /** name of the RoleBinding */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the RoleBinding */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceRbacAuthorizationV1NamespacedRoleBinding = RequestBodies.io$k8s$api$rbac$v1$RoleBinding.Content; export interface Response$replaceRbacAuthorizationV1NamespacedRoleBinding$Status$200 { @@ -25865,10 +25865,6 @@ export interface Response$replaceRbacAuthorizationV1NamespacedRoleBinding$Status "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$RoleBinding; } export interface Parameter$deleteRbacAuthorizationV1NamespacedRoleBinding { - /** name of the RoleBinding */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -25879,6 +25875,10 @@ export interface Parameter$deleteRbacAuthorizationV1NamespacedRoleBinding { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the RoleBinding */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteRbacAuthorizationV1NamespacedRoleBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteRbacAuthorizationV1NamespacedRoleBinding$Status$200 { @@ -25892,10 +25892,6 @@ export interface Response$deleteRbacAuthorizationV1NamespacedRoleBinding$Status$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchRbacAuthorizationV1NamespacedRoleBinding { - /** name of the RoleBinding */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -25904,6 +25900,10 @@ export interface Parameter$patchRbacAuthorizationV1NamespacedRoleBinding { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the RoleBinding */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchRbacAuthorizationV1NamespacedRoleBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchRbacAuthorizationV1NamespacedRoleBinding$Status$200 { @@ -25912,8 +25912,6 @@ export interface Response$patchRbacAuthorizationV1NamespacedRoleBinding$Status$2 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$RoleBinding; } export interface Parameter$listRbacAuthorizationV1NamespacedRole { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -25940,6 +25938,8 @@ export interface Parameter$listRbacAuthorizationV1NamespacedRole { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listRbacAuthorizationV1NamespacedRole$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1$RoleList; @@ -25949,14 +25949,14 @@ export interface Response$listRbacAuthorizationV1NamespacedRole$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$rbac$v1$RoleList; } export interface Parameter$createRbacAuthorizationV1NamespacedRole { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createRbacAuthorizationV1NamespacedRole = RequestBodies.io$k8s$api$rbac$v1$Role.Content; export interface Response$createRbacAuthorizationV1NamespacedRole$Status$200 { @@ -25975,8 +25975,6 @@ export interface Response$createRbacAuthorizationV1NamespacedRole$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$Role; } export interface Parameter$deleteRbacAuthorizationV1CollectionNamespacedRole { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -26011,6 +26009,8 @@ export interface Parameter$deleteRbacAuthorizationV1CollectionNamespacedRole { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteRbacAuthorizationV1CollectionNamespacedRole = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteRbacAuthorizationV1CollectionNamespacedRole$Status$200 { @@ -26019,12 +26019,12 @@ export interface Response$deleteRbacAuthorizationV1CollectionNamespacedRole$Stat "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readRbacAuthorizationV1NamespacedRole { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the Role */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readRbacAuthorizationV1NamespacedRole$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1$Role; @@ -26032,16 +26032,16 @@ export interface Response$readRbacAuthorizationV1NamespacedRole$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$Role; } export interface Parameter$replaceRbacAuthorizationV1NamespacedRole { - /** name of the Role */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Role */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceRbacAuthorizationV1NamespacedRole = RequestBodies.io$k8s$api$rbac$v1$Role.Content; export interface Response$replaceRbacAuthorizationV1NamespacedRole$Status$200 { @@ -26055,10 +26055,6 @@ export interface Response$replaceRbacAuthorizationV1NamespacedRole$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$Role; } export interface Parameter$deleteRbacAuthorizationV1NamespacedRole { - /** name of the Role */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -26069,6 +26065,10 @@ export interface Parameter$deleteRbacAuthorizationV1NamespacedRole { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the Role */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteRbacAuthorizationV1NamespacedRole = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteRbacAuthorizationV1NamespacedRole$Status$200 { @@ -26082,10 +26082,6 @@ export interface Response$deleteRbacAuthorizationV1NamespacedRole$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchRbacAuthorizationV1NamespacedRole { - /** name of the Role */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -26094,6 +26090,10 @@ export interface Parameter$patchRbacAuthorizationV1NamespacedRole { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Role */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchRbacAuthorizationV1NamespacedRole = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchRbacAuthorizationV1NamespacedRole$Status$200 { @@ -26225,8 +26225,6 @@ export interface Parameter$watchRbacAuthorizationV1ClusterRoleBinding { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the ClusterRoleBinding */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -26235,6 +26233,8 @@ export interface Parameter$watchRbacAuthorizationV1ClusterRoleBinding { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the ClusterRoleBinding */ + name: string; } export interface Response$watchRbacAuthorizationV1ClusterRoleBinding$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -26297,8 +26297,6 @@ export interface Parameter$watchRbacAuthorizationV1ClusterRole { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the ClusterRole */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -26307,6 +26305,8 @@ export interface Parameter$watchRbacAuthorizationV1ClusterRole { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the ClusterRole */ + name: string; } export interface Response$watchRbacAuthorizationV1ClusterRole$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -26334,8 +26334,6 @@ export interface Parameter$watchRbacAuthorizationV1NamespacedRoleBindingList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -26344,6 +26342,8 @@ export interface Parameter$watchRbacAuthorizationV1NamespacedRoleBindingList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchRbacAuthorizationV1NamespacedRoleBindingList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -26371,10 +26371,6 @@ export interface Parameter$watchRbacAuthorizationV1NamespacedRoleBinding { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the RoleBinding */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -26383,6 +26379,10 @@ export interface Parameter$watchRbacAuthorizationV1NamespacedRoleBinding { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the RoleBinding */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchRbacAuthorizationV1NamespacedRoleBinding$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -26410,8 +26410,6 @@ export interface Parameter$watchRbacAuthorizationV1NamespacedRoleList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -26420,6 +26418,8 @@ export interface Parameter$watchRbacAuthorizationV1NamespacedRoleList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchRbacAuthorizationV1NamespacedRoleList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -26447,10 +26447,6 @@ export interface Parameter$watchRbacAuthorizationV1NamespacedRole { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the Role */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -26459,6 +26455,10 @@ export interface Parameter$watchRbacAuthorizationV1NamespacedRole { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the Role */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchRbacAuthorizationV1NamespacedRole$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -26644,10 +26644,10 @@ export interface Response$deleteRbacAuthorizationV1alpha1CollectionClusterRoleBi "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readRbacAuthorizationV1alpha1ClusterRoleBinding { - /** name of the ClusterRoleBinding */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** name of the ClusterRoleBinding */ + name: string; } export interface Response$readRbacAuthorizationV1alpha1ClusterRoleBinding$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1alpha1$ClusterRoleBinding; @@ -26655,14 +26655,14 @@ export interface Response$readRbacAuthorizationV1alpha1ClusterRoleBinding$Status "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1alpha1$ClusterRoleBinding; } export interface Parameter$replaceRbacAuthorizationV1alpha1ClusterRoleBinding { - /** name of the ClusterRoleBinding */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the ClusterRoleBinding */ + name: string; } export type RequestBody$replaceRbacAuthorizationV1alpha1ClusterRoleBinding = RequestBodies.io$k8s$api$rbac$v1alpha1$ClusterRoleBinding.Content; export interface Response$replaceRbacAuthorizationV1alpha1ClusterRoleBinding$Status$200 { @@ -26676,8 +26676,6 @@ export interface Response$replaceRbacAuthorizationV1alpha1ClusterRoleBinding$Sta "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1alpha1$ClusterRoleBinding; } export interface Parameter$deleteRbacAuthorizationV1alpha1ClusterRoleBinding { - /** name of the ClusterRoleBinding */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -26688,6 +26686,8 @@ export interface Parameter$deleteRbacAuthorizationV1alpha1ClusterRoleBinding { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the ClusterRoleBinding */ + name: string; } export type RequestBody$deleteRbacAuthorizationV1alpha1ClusterRoleBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteRbacAuthorizationV1alpha1ClusterRoleBinding$Status$200 { @@ -26701,8 +26701,6 @@ export interface Response$deleteRbacAuthorizationV1alpha1ClusterRoleBinding$Stat "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchRbacAuthorizationV1alpha1ClusterRoleBinding { - /** name of the ClusterRoleBinding */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -26711,6 +26709,8 @@ export interface Parameter$patchRbacAuthorizationV1alpha1ClusterRoleBinding { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the ClusterRoleBinding */ + name: string; } export type RequestBody$patchRbacAuthorizationV1alpha1ClusterRoleBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchRbacAuthorizationV1alpha1ClusterRoleBinding$Status$200 { @@ -26820,10 +26820,10 @@ export interface Response$deleteRbacAuthorizationV1alpha1CollectionClusterRole$S "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readRbacAuthorizationV1alpha1ClusterRole { - /** name of the ClusterRole */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** name of the ClusterRole */ + name: string; } export interface Response$readRbacAuthorizationV1alpha1ClusterRole$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1alpha1$ClusterRole; @@ -26831,14 +26831,14 @@ export interface Response$readRbacAuthorizationV1alpha1ClusterRole$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1alpha1$ClusterRole; } export interface Parameter$replaceRbacAuthorizationV1alpha1ClusterRole { - /** name of the ClusterRole */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the ClusterRole */ + name: string; } export type RequestBody$replaceRbacAuthorizationV1alpha1ClusterRole = RequestBodies.io$k8s$api$rbac$v1alpha1$ClusterRole.Content; export interface Response$replaceRbacAuthorizationV1alpha1ClusterRole$Status$200 { @@ -26852,8 +26852,6 @@ export interface Response$replaceRbacAuthorizationV1alpha1ClusterRole$Status$201 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1alpha1$ClusterRole; } export interface Parameter$deleteRbacAuthorizationV1alpha1ClusterRole { - /** name of the ClusterRole */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -26864,6 +26862,8 @@ export interface Parameter$deleteRbacAuthorizationV1alpha1ClusterRole { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the ClusterRole */ + name: string; } export type RequestBody$deleteRbacAuthorizationV1alpha1ClusterRole = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteRbacAuthorizationV1alpha1ClusterRole$Status$200 { @@ -26877,8 +26877,6 @@ export interface Response$deleteRbacAuthorizationV1alpha1ClusterRole$Status$202 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchRbacAuthorizationV1alpha1ClusterRole { - /** name of the ClusterRole */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -26887,6 +26885,8 @@ export interface Parameter$patchRbacAuthorizationV1alpha1ClusterRole { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the ClusterRole */ + name: string; } export type RequestBody$patchRbacAuthorizationV1alpha1ClusterRole = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchRbacAuthorizationV1alpha1ClusterRole$Status$200 { @@ -26895,8 +26895,6 @@ export interface Response$patchRbacAuthorizationV1alpha1ClusterRole$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1alpha1$ClusterRole; } export interface Parameter$listRbacAuthorizationV1alpha1NamespacedRoleBinding { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -26923,6 +26921,8 @@ export interface Parameter$listRbacAuthorizationV1alpha1NamespacedRoleBinding { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listRbacAuthorizationV1alpha1NamespacedRoleBinding$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1alpha1$RoleBindingList; @@ -26932,14 +26932,14 @@ export interface Response$listRbacAuthorizationV1alpha1NamespacedRoleBinding$Sta "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$rbac$v1alpha1$RoleBindingList; } export interface Parameter$createRbacAuthorizationV1alpha1NamespacedRoleBinding { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createRbacAuthorizationV1alpha1NamespacedRoleBinding = RequestBodies.io$k8s$api$rbac$v1alpha1$RoleBinding.Content; export interface Response$createRbacAuthorizationV1alpha1NamespacedRoleBinding$Status$200 { @@ -26958,8 +26958,6 @@ export interface Response$createRbacAuthorizationV1alpha1NamespacedRoleBinding$S "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1alpha1$RoleBinding; } export interface Parameter$deleteRbacAuthorizationV1alpha1CollectionNamespacedRoleBinding { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -26994,6 +26992,8 @@ export interface Parameter$deleteRbacAuthorizationV1alpha1CollectionNamespacedRo timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteRbacAuthorizationV1alpha1CollectionNamespacedRoleBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteRbacAuthorizationV1alpha1CollectionNamespacedRoleBinding$Status$200 { @@ -27002,12 +27002,12 @@ export interface Response$deleteRbacAuthorizationV1alpha1CollectionNamespacedRol "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readRbacAuthorizationV1alpha1NamespacedRoleBinding { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the RoleBinding */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readRbacAuthorizationV1alpha1NamespacedRoleBinding$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1alpha1$RoleBinding; @@ -27015,16 +27015,16 @@ export interface Response$readRbacAuthorizationV1alpha1NamespacedRoleBinding$Sta "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1alpha1$RoleBinding; } export interface Parameter$replaceRbacAuthorizationV1alpha1NamespacedRoleBinding { - /** name of the RoleBinding */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the RoleBinding */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceRbacAuthorizationV1alpha1NamespacedRoleBinding = RequestBodies.io$k8s$api$rbac$v1alpha1$RoleBinding.Content; export interface Response$replaceRbacAuthorizationV1alpha1NamespacedRoleBinding$Status$200 { @@ -27038,10 +27038,6 @@ export interface Response$replaceRbacAuthorizationV1alpha1NamespacedRoleBinding$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1alpha1$RoleBinding; } export interface Parameter$deleteRbacAuthorizationV1alpha1NamespacedRoleBinding { - /** name of the RoleBinding */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -27052,6 +27048,10 @@ export interface Parameter$deleteRbacAuthorizationV1alpha1NamespacedRoleBinding orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the RoleBinding */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteRbacAuthorizationV1alpha1NamespacedRoleBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteRbacAuthorizationV1alpha1NamespacedRoleBinding$Status$200 { @@ -27065,10 +27065,6 @@ export interface Response$deleteRbacAuthorizationV1alpha1NamespacedRoleBinding$S "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchRbacAuthorizationV1alpha1NamespacedRoleBinding { - /** name of the RoleBinding */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -27077,6 +27073,10 @@ export interface Parameter$patchRbacAuthorizationV1alpha1NamespacedRoleBinding { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the RoleBinding */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchRbacAuthorizationV1alpha1NamespacedRoleBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchRbacAuthorizationV1alpha1NamespacedRoleBinding$Status$200 { @@ -27085,8 +27085,6 @@ export interface Response$patchRbacAuthorizationV1alpha1NamespacedRoleBinding$St "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1alpha1$RoleBinding; } export interface Parameter$listRbacAuthorizationV1alpha1NamespacedRole { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -27113,6 +27111,8 @@ export interface Parameter$listRbacAuthorizationV1alpha1NamespacedRole { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listRbacAuthorizationV1alpha1NamespacedRole$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1alpha1$RoleList; @@ -27122,14 +27122,14 @@ export interface Response$listRbacAuthorizationV1alpha1NamespacedRole$Status$200 "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$rbac$v1alpha1$RoleList; } export interface Parameter$createRbacAuthorizationV1alpha1NamespacedRole { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createRbacAuthorizationV1alpha1NamespacedRole = RequestBodies.io$k8s$api$rbac$v1alpha1$Role.Content; export interface Response$createRbacAuthorizationV1alpha1NamespacedRole$Status$200 { @@ -27148,8 +27148,6 @@ export interface Response$createRbacAuthorizationV1alpha1NamespacedRole$Status$2 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1alpha1$Role; } export interface Parameter$deleteRbacAuthorizationV1alpha1CollectionNamespacedRole { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -27184,6 +27182,8 @@ export interface Parameter$deleteRbacAuthorizationV1alpha1CollectionNamespacedRo timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteRbacAuthorizationV1alpha1CollectionNamespacedRole = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteRbacAuthorizationV1alpha1CollectionNamespacedRole$Status$200 { @@ -27192,12 +27192,12 @@ export interface Response$deleteRbacAuthorizationV1alpha1CollectionNamespacedRol "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readRbacAuthorizationV1alpha1NamespacedRole { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the Role */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readRbacAuthorizationV1alpha1NamespacedRole$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1alpha1$Role; @@ -27205,16 +27205,16 @@ export interface Response$readRbacAuthorizationV1alpha1NamespacedRole$Status$200 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1alpha1$Role; } export interface Parameter$replaceRbacAuthorizationV1alpha1NamespacedRole { - /** name of the Role */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Role */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceRbacAuthorizationV1alpha1NamespacedRole = RequestBodies.io$k8s$api$rbac$v1alpha1$Role.Content; export interface Response$replaceRbacAuthorizationV1alpha1NamespacedRole$Status$200 { @@ -27228,10 +27228,6 @@ export interface Response$replaceRbacAuthorizationV1alpha1NamespacedRole$Status$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1alpha1$Role; } export interface Parameter$deleteRbacAuthorizationV1alpha1NamespacedRole { - /** name of the Role */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -27242,6 +27238,10 @@ export interface Parameter$deleteRbacAuthorizationV1alpha1NamespacedRole { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the Role */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteRbacAuthorizationV1alpha1NamespacedRole = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteRbacAuthorizationV1alpha1NamespacedRole$Status$200 { @@ -27255,10 +27255,6 @@ export interface Response$deleteRbacAuthorizationV1alpha1NamespacedRole$Status$2 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchRbacAuthorizationV1alpha1NamespacedRole { - /** name of the Role */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -27267,6 +27263,10 @@ export interface Parameter$patchRbacAuthorizationV1alpha1NamespacedRole { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Role */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchRbacAuthorizationV1alpha1NamespacedRole = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchRbacAuthorizationV1alpha1NamespacedRole$Status$200 { @@ -27398,8 +27398,6 @@ export interface Parameter$watchRbacAuthorizationV1alpha1ClusterRoleBinding { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the ClusterRoleBinding */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -27408,6 +27406,8 @@ export interface Parameter$watchRbacAuthorizationV1alpha1ClusterRoleBinding { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the ClusterRoleBinding */ + name: string; } export interface Response$watchRbacAuthorizationV1alpha1ClusterRoleBinding$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -27470,8 +27470,6 @@ export interface Parameter$watchRbacAuthorizationV1alpha1ClusterRole { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the ClusterRole */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -27480,6 +27478,8 @@ export interface Parameter$watchRbacAuthorizationV1alpha1ClusterRole { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the ClusterRole */ + name: string; } export interface Response$watchRbacAuthorizationV1alpha1ClusterRole$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -27507,8 +27507,6 @@ export interface Parameter$watchRbacAuthorizationV1alpha1NamespacedRoleBindingLi * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -27517,6 +27515,8 @@ export interface Parameter$watchRbacAuthorizationV1alpha1NamespacedRoleBindingLi timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchRbacAuthorizationV1alpha1NamespacedRoleBindingList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -27544,10 +27544,6 @@ export interface Parameter$watchRbacAuthorizationV1alpha1NamespacedRoleBinding { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the RoleBinding */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -27556,6 +27552,10 @@ export interface Parameter$watchRbacAuthorizationV1alpha1NamespacedRoleBinding { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the RoleBinding */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchRbacAuthorizationV1alpha1NamespacedRoleBinding$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -27583,8 +27583,6 @@ export interface Parameter$watchRbacAuthorizationV1alpha1NamespacedRoleList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -27593,6 +27591,8 @@ export interface Parameter$watchRbacAuthorizationV1alpha1NamespacedRoleList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchRbacAuthorizationV1alpha1NamespacedRoleList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -27620,10 +27620,6 @@ export interface Parameter$watchRbacAuthorizationV1alpha1NamespacedRole { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the Role */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -27632,6 +27628,10 @@ export interface Parameter$watchRbacAuthorizationV1alpha1NamespacedRole { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the Role */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchRbacAuthorizationV1alpha1NamespacedRole$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -27817,10 +27817,10 @@ export interface Response$deleteRbacAuthorizationV1beta1CollectionClusterRoleBin "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readRbacAuthorizationV1beta1ClusterRoleBinding { - /** name of the ClusterRoleBinding */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** name of the ClusterRoleBinding */ + name: string; } export interface Response$readRbacAuthorizationV1beta1ClusterRoleBinding$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1beta1$ClusterRoleBinding; @@ -27828,14 +27828,14 @@ export interface Response$readRbacAuthorizationV1beta1ClusterRoleBinding$Status$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1beta1$ClusterRoleBinding; } export interface Parameter$replaceRbacAuthorizationV1beta1ClusterRoleBinding { - /** name of the ClusterRoleBinding */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the ClusterRoleBinding */ + name: string; } export type RequestBody$replaceRbacAuthorizationV1beta1ClusterRoleBinding = RequestBodies.io$k8s$api$rbac$v1beta1$ClusterRoleBinding.Content; export interface Response$replaceRbacAuthorizationV1beta1ClusterRoleBinding$Status$200 { @@ -27849,8 +27849,6 @@ export interface Response$replaceRbacAuthorizationV1beta1ClusterRoleBinding$Stat "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1beta1$ClusterRoleBinding; } export interface Parameter$deleteRbacAuthorizationV1beta1ClusterRoleBinding { - /** name of the ClusterRoleBinding */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -27861,6 +27859,8 @@ export interface Parameter$deleteRbacAuthorizationV1beta1ClusterRoleBinding { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the ClusterRoleBinding */ + name: string; } export type RequestBody$deleteRbacAuthorizationV1beta1ClusterRoleBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteRbacAuthorizationV1beta1ClusterRoleBinding$Status$200 { @@ -27874,8 +27874,6 @@ export interface Response$deleteRbacAuthorizationV1beta1ClusterRoleBinding$Statu "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchRbacAuthorizationV1beta1ClusterRoleBinding { - /** name of the ClusterRoleBinding */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -27884,6 +27882,8 @@ export interface Parameter$patchRbacAuthorizationV1beta1ClusterRoleBinding { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the ClusterRoleBinding */ + name: string; } export type RequestBody$patchRbacAuthorizationV1beta1ClusterRoleBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchRbacAuthorizationV1beta1ClusterRoleBinding$Status$200 { @@ -27993,10 +27993,10 @@ export interface Response$deleteRbacAuthorizationV1beta1CollectionClusterRole$St "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readRbacAuthorizationV1beta1ClusterRole { - /** name of the ClusterRole */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** name of the ClusterRole */ + name: string; } export interface Response$readRbacAuthorizationV1beta1ClusterRole$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1beta1$ClusterRole; @@ -28004,14 +28004,14 @@ export interface Response$readRbacAuthorizationV1beta1ClusterRole$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1beta1$ClusterRole; } export interface Parameter$replaceRbacAuthorizationV1beta1ClusterRole { - /** name of the ClusterRole */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the ClusterRole */ + name: string; } export type RequestBody$replaceRbacAuthorizationV1beta1ClusterRole = RequestBodies.io$k8s$api$rbac$v1beta1$ClusterRole.Content; export interface Response$replaceRbacAuthorizationV1beta1ClusterRole$Status$200 { @@ -28025,8 +28025,6 @@ export interface Response$replaceRbacAuthorizationV1beta1ClusterRole$Status$201 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1beta1$ClusterRole; } export interface Parameter$deleteRbacAuthorizationV1beta1ClusterRole { - /** name of the ClusterRole */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -28037,6 +28035,8 @@ export interface Parameter$deleteRbacAuthorizationV1beta1ClusterRole { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the ClusterRole */ + name: string; } export type RequestBody$deleteRbacAuthorizationV1beta1ClusterRole = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteRbacAuthorizationV1beta1ClusterRole$Status$200 { @@ -28050,8 +28050,6 @@ export interface Response$deleteRbacAuthorizationV1beta1ClusterRole$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchRbacAuthorizationV1beta1ClusterRole { - /** name of the ClusterRole */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -28060,6 +28058,8 @@ export interface Parameter$patchRbacAuthorizationV1beta1ClusterRole { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the ClusterRole */ + name: string; } export type RequestBody$patchRbacAuthorizationV1beta1ClusterRole = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchRbacAuthorizationV1beta1ClusterRole$Status$200 { @@ -28068,8 +28068,6 @@ export interface Response$patchRbacAuthorizationV1beta1ClusterRole$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1beta1$ClusterRole; } export interface Parameter$listRbacAuthorizationV1beta1NamespacedRoleBinding { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -28096,6 +28094,8 @@ export interface Parameter$listRbacAuthorizationV1beta1NamespacedRoleBinding { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listRbacAuthorizationV1beta1NamespacedRoleBinding$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1beta1$RoleBindingList; @@ -28105,14 +28105,14 @@ export interface Response$listRbacAuthorizationV1beta1NamespacedRoleBinding$Stat "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$rbac$v1beta1$RoleBindingList; } export interface Parameter$createRbacAuthorizationV1beta1NamespacedRoleBinding { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createRbacAuthorizationV1beta1NamespacedRoleBinding = RequestBodies.io$k8s$api$rbac$v1beta1$RoleBinding.Content; export interface Response$createRbacAuthorizationV1beta1NamespacedRoleBinding$Status$200 { @@ -28131,8 +28131,6 @@ export interface Response$createRbacAuthorizationV1beta1NamespacedRoleBinding$St "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1beta1$RoleBinding; } export interface Parameter$deleteRbacAuthorizationV1beta1CollectionNamespacedRoleBinding { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -28167,6 +28165,8 @@ export interface Parameter$deleteRbacAuthorizationV1beta1CollectionNamespacedRol timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteRbacAuthorizationV1beta1CollectionNamespacedRoleBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteRbacAuthorizationV1beta1CollectionNamespacedRoleBinding$Status$200 { @@ -28175,12 +28175,12 @@ export interface Response$deleteRbacAuthorizationV1beta1CollectionNamespacedRole "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readRbacAuthorizationV1beta1NamespacedRoleBinding { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the RoleBinding */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readRbacAuthorizationV1beta1NamespacedRoleBinding$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1beta1$RoleBinding; @@ -28188,16 +28188,16 @@ export interface Response$readRbacAuthorizationV1beta1NamespacedRoleBinding$Stat "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1beta1$RoleBinding; } export interface Parameter$replaceRbacAuthorizationV1beta1NamespacedRoleBinding { - /** name of the RoleBinding */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the RoleBinding */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceRbacAuthorizationV1beta1NamespacedRoleBinding = RequestBodies.io$k8s$api$rbac$v1beta1$RoleBinding.Content; export interface Response$replaceRbacAuthorizationV1beta1NamespacedRoleBinding$Status$200 { @@ -28211,10 +28211,6 @@ export interface Response$replaceRbacAuthorizationV1beta1NamespacedRoleBinding$S "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1beta1$RoleBinding; } export interface Parameter$deleteRbacAuthorizationV1beta1NamespacedRoleBinding { - /** name of the RoleBinding */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -28225,6 +28221,10 @@ export interface Parameter$deleteRbacAuthorizationV1beta1NamespacedRoleBinding { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the RoleBinding */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteRbacAuthorizationV1beta1NamespacedRoleBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteRbacAuthorizationV1beta1NamespacedRoleBinding$Status$200 { @@ -28238,10 +28238,6 @@ export interface Response$deleteRbacAuthorizationV1beta1NamespacedRoleBinding$St "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchRbacAuthorizationV1beta1NamespacedRoleBinding { - /** name of the RoleBinding */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -28250,6 +28246,10 @@ export interface Parameter$patchRbacAuthorizationV1beta1NamespacedRoleBinding { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the RoleBinding */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchRbacAuthorizationV1beta1NamespacedRoleBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchRbacAuthorizationV1beta1NamespacedRoleBinding$Status$200 { @@ -28258,8 +28258,6 @@ export interface Response$patchRbacAuthorizationV1beta1NamespacedRoleBinding$Sta "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1beta1$RoleBinding; } export interface Parameter$listRbacAuthorizationV1beta1NamespacedRole { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -28286,6 +28284,8 @@ export interface Parameter$listRbacAuthorizationV1beta1NamespacedRole { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listRbacAuthorizationV1beta1NamespacedRole$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1beta1$RoleList; @@ -28295,14 +28295,14 @@ export interface Response$listRbacAuthorizationV1beta1NamespacedRole$Status$200 "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$rbac$v1beta1$RoleList; } export interface Parameter$createRbacAuthorizationV1beta1NamespacedRole { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createRbacAuthorizationV1beta1NamespacedRole = RequestBodies.io$k8s$api$rbac$v1beta1$Role.Content; export interface Response$createRbacAuthorizationV1beta1NamespacedRole$Status$200 { @@ -28321,8 +28321,6 @@ export interface Response$createRbacAuthorizationV1beta1NamespacedRole$Status$20 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1beta1$Role; } export interface Parameter$deleteRbacAuthorizationV1beta1CollectionNamespacedRole { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -28357,6 +28355,8 @@ export interface Parameter$deleteRbacAuthorizationV1beta1CollectionNamespacedRol timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteRbacAuthorizationV1beta1CollectionNamespacedRole = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteRbacAuthorizationV1beta1CollectionNamespacedRole$Status$200 { @@ -28365,12 +28365,12 @@ export interface Response$deleteRbacAuthorizationV1beta1CollectionNamespacedRole "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readRbacAuthorizationV1beta1NamespacedRole { + /** If 'true', then the output is pretty printed. */ + pretty?: string; /** name of the Role */ name: string; /** object name and auth scope, such as for teams and projects */ namespace: string; - /** If 'true', then the output is pretty printed. */ - pretty?: string; } export interface Response$readRbacAuthorizationV1beta1NamespacedRole$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1beta1$Role; @@ -28378,16 +28378,16 @@ export interface Response$readRbacAuthorizationV1beta1NamespacedRole$Status$200 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1beta1$Role; } export interface Parameter$replaceRbacAuthorizationV1beta1NamespacedRole { - /** name of the Role */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the Role */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceRbacAuthorizationV1beta1NamespacedRole = RequestBodies.io$k8s$api$rbac$v1beta1$Role.Content; export interface Response$replaceRbacAuthorizationV1beta1NamespacedRole$Status$200 { @@ -28401,10 +28401,6 @@ export interface Response$replaceRbacAuthorizationV1beta1NamespacedRole$Status$2 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1beta1$Role; } export interface Parameter$deleteRbacAuthorizationV1beta1NamespacedRole { - /** name of the Role */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -28415,6 +28411,10 @@ export interface Parameter$deleteRbacAuthorizationV1beta1NamespacedRole { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the Role */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteRbacAuthorizationV1beta1NamespacedRole = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteRbacAuthorizationV1beta1NamespacedRole$Status$200 { @@ -28428,10 +28428,6 @@ export interface Response$deleteRbacAuthorizationV1beta1NamespacedRole$Status$20 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchRbacAuthorizationV1beta1NamespacedRole { - /** name of the Role */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -28440,6 +28436,10 @@ export interface Parameter$patchRbacAuthorizationV1beta1NamespacedRole { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the Role */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchRbacAuthorizationV1beta1NamespacedRole = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchRbacAuthorizationV1beta1NamespacedRole$Status$200 { @@ -28571,8 +28571,6 @@ export interface Parameter$watchRbacAuthorizationV1beta1ClusterRoleBinding { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the ClusterRoleBinding */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -28581,6 +28579,8 @@ export interface Parameter$watchRbacAuthorizationV1beta1ClusterRoleBinding { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the ClusterRoleBinding */ + name: string; } export interface Response$watchRbacAuthorizationV1beta1ClusterRoleBinding$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -28643,8 +28643,6 @@ export interface Parameter$watchRbacAuthorizationV1beta1ClusterRole { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the ClusterRole */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -28653,6 +28651,8 @@ export interface Parameter$watchRbacAuthorizationV1beta1ClusterRole { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the ClusterRole */ + name: string; } export interface Response$watchRbacAuthorizationV1beta1ClusterRole$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -28680,8 +28680,6 @@ export interface Parameter$watchRbacAuthorizationV1beta1NamespacedRoleBindingLis * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -28690,6 +28688,8 @@ export interface Parameter$watchRbacAuthorizationV1beta1NamespacedRoleBindingLis timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchRbacAuthorizationV1beta1NamespacedRoleBindingList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -28717,10 +28717,6 @@ export interface Parameter$watchRbacAuthorizationV1beta1NamespacedRoleBinding { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the RoleBinding */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -28729,6 +28725,10 @@ export interface Parameter$watchRbacAuthorizationV1beta1NamespacedRoleBinding { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the RoleBinding */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchRbacAuthorizationV1beta1NamespacedRoleBinding$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -28756,8 +28756,6 @@ export interface Parameter$watchRbacAuthorizationV1beta1NamespacedRoleList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -28766,6 +28764,8 @@ export interface Parameter$watchRbacAuthorizationV1beta1NamespacedRoleList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchRbacAuthorizationV1beta1NamespacedRoleList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -28793,10 +28793,6 @@ export interface Parameter$watchRbacAuthorizationV1beta1NamespacedRole { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the Role */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -28805,6 +28801,10 @@ export interface Parameter$watchRbacAuthorizationV1beta1NamespacedRole { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the Role */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchRbacAuthorizationV1beta1NamespacedRole$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -28995,14 +28995,14 @@ export interface Response$deleteSchedulingV1CollectionPriorityClass$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readSchedulingV1PriorityClass { - /** name of the PriorityClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the PriorityClass */ + name: string; } export interface Response$readSchedulingV1PriorityClass$Status$200 { "application/json": Schemas.io$k8s$api$scheduling$v1$PriorityClass; @@ -29010,14 +29010,14 @@ export interface Response$readSchedulingV1PriorityClass$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$scheduling$v1$PriorityClass; } export interface Parameter$replaceSchedulingV1PriorityClass { - /** name of the PriorityClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the PriorityClass */ + name: string; } export type RequestBody$replaceSchedulingV1PriorityClass = RequestBodies.io$k8s$api$scheduling$v1$PriorityClass.Content; export interface Response$replaceSchedulingV1PriorityClass$Status$200 { @@ -29031,8 +29031,6 @@ export interface Response$replaceSchedulingV1PriorityClass$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$scheduling$v1$PriorityClass; } export interface Parameter$deleteSchedulingV1PriorityClass { - /** name of the PriorityClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -29043,6 +29041,8 @@ export interface Parameter$deleteSchedulingV1PriorityClass { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the PriorityClass */ + name: string; } export type RequestBody$deleteSchedulingV1PriorityClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteSchedulingV1PriorityClass$Status$200 { @@ -29056,8 +29056,6 @@ export interface Response$deleteSchedulingV1PriorityClass$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchSchedulingV1PriorityClass { - /** name of the PriorityClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -29066,6 +29064,8 @@ export interface Parameter$patchSchedulingV1PriorityClass { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the PriorityClass */ + name: string; } export type RequestBody$patchSchedulingV1PriorityClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchSchedulingV1PriorityClass$Status$200 { @@ -29127,8 +29127,6 @@ export interface Parameter$watchSchedulingV1PriorityClass { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the PriorityClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -29137,6 +29135,8 @@ export interface Parameter$watchSchedulingV1PriorityClass { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the PriorityClass */ + name: string; } export interface Response$watchSchedulingV1PriorityClass$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -29252,14 +29252,14 @@ export interface Response$deleteSchedulingV1alpha1CollectionPriorityClass$Status "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readSchedulingV1alpha1PriorityClass { - /** name of the PriorityClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the PriorityClass */ + name: string; } export interface Response$readSchedulingV1alpha1PriorityClass$Status$200 { "application/json": Schemas.io$k8s$api$scheduling$v1alpha1$PriorityClass; @@ -29267,14 +29267,14 @@ export interface Response$readSchedulingV1alpha1PriorityClass$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$scheduling$v1alpha1$PriorityClass; } export interface Parameter$replaceSchedulingV1alpha1PriorityClass { - /** name of the PriorityClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the PriorityClass */ + name: string; } export type RequestBody$replaceSchedulingV1alpha1PriorityClass = RequestBodies.io$k8s$api$scheduling$v1alpha1$PriorityClass.Content; export interface Response$replaceSchedulingV1alpha1PriorityClass$Status$200 { @@ -29288,8 +29288,6 @@ export interface Response$replaceSchedulingV1alpha1PriorityClass$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$scheduling$v1alpha1$PriorityClass; } export interface Parameter$deleteSchedulingV1alpha1PriorityClass { - /** name of the PriorityClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -29300,6 +29298,8 @@ export interface Parameter$deleteSchedulingV1alpha1PriorityClass { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the PriorityClass */ + name: string; } export type RequestBody$deleteSchedulingV1alpha1PriorityClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteSchedulingV1alpha1PriorityClass$Status$200 { @@ -29313,8 +29313,6 @@ export interface Response$deleteSchedulingV1alpha1PriorityClass$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchSchedulingV1alpha1PriorityClass { - /** name of the PriorityClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -29323,6 +29321,8 @@ export interface Parameter$patchSchedulingV1alpha1PriorityClass { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the PriorityClass */ + name: string; } export type RequestBody$patchSchedulingV1alpha1PriorityClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchSchedulingV1alpha1PriorityClass$Status$200 { @@ -29384,8 +29384,6 @@ export interface Parameter$watchSchedulingV1alpha1PriorityClass { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the PriorityClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -29394,6 +29392,8 @@ export interface Parameter$watchSchedulingV1alpha1PriorityClass { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the PriorityClass */ + name: string; } export interface Response$watchSchedulingV1alpha1PriorityClass$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -29509,14 +29509,14 @@ export interface Response$deleteSchedulingV1beta1CollectionPriorityClass$Status$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readSchedulingV1beta1PriorityClass { - /** name of the PriorityClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the PriorityClass */ + name: string; } export interface Response$readSchedulingV1beta1PriorityClass$Status$200 { "application/json": Schemas.io$k8s$api$scheduling$v1beta1$PriorityClass; @@ -29524,14 +29524,14 @@ export interface Response$readSchedulingV1beta1PriorityClass$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$scheduling$v1beta1$PriorityClass; } export interface Parameter$replaceSchedulingV1beta1PriorityClass { - /** name of the PriorityClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the PriorityClass */ + name: string; } export type RequestBody$replaceSchedulingV1beta1PriorityClass = RequestBodies.io$k8s$api$scheduling$v1beta1$PriorityClass.Content; export interface Response$replaceSchedulingV1beta1PriorityClass$Status$200 { @@ -29545,8 +29545,6 @@ export interface Response$replaceSchedulingV1beta1PriorityClass$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$scheduling$v1beta1$PriorityClass; } export interface Parameter$deleteSchedulingV1beta1PriorityClass { - /** name of the PriorityClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -29557,6 +29555,8 @@ export interface Parameter$deleteSchedulingV1beta1PriorityClass { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the PriorityClass */ + name: string; } export type RequestBody$deleteSchedulingV1beta1PriorityClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteSchedulingV1beta1PriorityClass$Status$200 { @@ -29570,8 +29570,6 @@ export interface Response$deleteSchedulingV1beta1PriorityClass$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchSchedulingV1beta1PriorityClass { - /** name of the PriorityClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -29580,6 +29578,8 @@ export interface Parameter$patchSchedulingV1beta1PriorityClass { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the PriorityClass */ + name: string; } export type RequestBody$patchSchedulingV1beta1PriorityClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchSchedulingV1beta1PriorityClass$Status$200 { @@ -29641,8 +29641,6 @@ export interface Parameter$watchSchedulingV1beta1PriorityClass { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the PriorityClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -29651,6 +29649,8 @@ export interface Parameter$watchSchedulingV1beta1PriorityClass { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the PriorityClass */ + name: string; } export interface Response$watchSchedulingV1beta1PriorityClass$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -29670,8 +29670,6 @@ export interface Response$getSettingsV1alpha1APIResources$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; } export interface Parameter$listSettingsV1alpha1NamespacedPodPreset { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -29698,6 +29696,8 @@ export interface Parameter$listSettingsV1alpha1NamespacedPodPreset { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$listSettingsV1alpha1NamespacedPodPreset$Status$200 { "application/json": Schemas.io$k8s$api$settings$v1alpha1$PodPresetList; @@ -29707,14 +29707,14 @@ export interface Response$listSettingsV1alpha1NamespacedPodPreset$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$settings$v1alpha1$PodPresetList; } export interface Parameter$createSettingsV1alpha1NamespacedPodPreset { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$createSettingsV1alpha1NamespacedPodPreset = RequestBodies.io$k8s$api$settings$v1alpha1$PodPreset.Content; export interface Response$createSettingsV1alpha1NamespacedPodPreset$Status$200 { @@ -29733,8 +29733,6 @@ export interface Response$createSettingsV1alpha1NamespacedPodPreset$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$settings$v1alpha1$PodPreset; } export interface Parameter$deleteSettingsV1alpha1CollectionNamespacedPodPreset { - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. */ @@ -29769,6 +29767,8 @@ export interface Parameter$deleteSettingsV1alpha1CollectionNamespacedPodPreset { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteSettingsV1alpha1CollectionNamespacedPodPreset = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteSettingsV1alpha1CollectionNamespacedPodPreset$Status$200 { @@ -29777,16 +29777,16 @@ export interface Response$deleteSettingsV1alpha1CollectionNamespacedPodPreset$St "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readSettingsV1alpha1NamespacedPodPreset { - /** name of the PodPreset */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the PodPreset */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$readSettingsV1alpha1NamespacedPodPreset$Status$200 { "application/json": Schemas.io$k8s$api$settings$v1alpha1$PodPreset; @@ -29794,16 +29794,16 @@ export interface Response$readSettingsV1alpha1NamespacedPodPreset$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$settings$v1alpha1$PodPreset; } export interface Parameter$replaceSettingsV1alpha1NamespacedPodPreset { - /** name of the PodPreset */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the PodPreset */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$replaceSettingsV1alpha1NamespacedPodPreset = RequestBodies.io$k8s$api$settings$v1alpha1$PodPreset.Content; export interface Response$replaceSettingsV1alpha1NamespacedPodPreset$Status$200 { @@ -29817,10 +29817,6 @@ export interface Response$replaceSettingsV1alpha1NamespacedPodPreset$Status$201 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$settings$v1alpha1$PodPreset; } export interface Parameter$deleteSettingsV1alpha1NamespacedPodPreset { - /** name of the PodPreset */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -29831,6 +29827,10 @@ export interface Parameter$deleteSettingsV1alpha1NamespacedPodPreset { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the PodPreset */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$deleteSettingsV1alpha1NamespacedPodPreset = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteSettingsV1alpha1NamespacedPodPreset$Status$200 { @@ -29844,10 +29844,6 @@ export interface Response$deleteSettingsV1alpha1NamespacedPodPreset$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchSettingsV1alpha1NamespacedPodPreset { - /** name of the PodPreset */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -29856,6 +29852,10 @@ export interface Parameter$patchSettingsV1alpha1NamespacedPodPreset { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the PodPreset */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export type RequestBody$patchSettingsV1alpha1NamespacedPodPreset = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchSettingsV1alpha1NamespacedPodPreset$Status$200 { @@ -29917,8 +29917,6 @@ export interface Parameter$watchSettingsV1alpha1NamespacedPodPresetList { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -29927,6 +29925,8 @@ export interface Parameter$watchSettingsV1alpha1NamespacedPodPresetList { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchSettingsV1alpha1NamespacedPodPresetList$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -29954,10 +29954,6 @@ export interface Parameter$watchSettingsV1alpha1NamespacedPodPreset { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the PodPreset */ - name: string; - /** object name and auth scope, such as for teams and projects */ - namespace: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -29966,6 +29962,10 @@ export interface Parameter$watchSettingsV1alpha1NamespacedPodPreset { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the PodPreset */ + name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: string; } export interface Response$watchSettingsV1alpha1NamespacedPodPreset$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -30121,14 +30121,14 @@ export interface Response$deleteStorageV1CollectionCSIDriver$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readStorageV1CSIDriver { - /** name of the CSIDriver */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the CSIDriver */ + name: string; } export interface Response$readStorageV1CSIDriver$Status$200 { "application/json": Schemas.io$k8s$api$storage$v1$CSIDriver; @@ -30136,14 +30136,14 @@ export interface Response$readStorageV1CSIDriver$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSIDriver; } export interface Parameter$replaceStorageV1CSIDriver { - /** name of the CSIDriver */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the CSIDriver */ + name: string; } export type RequestBody$replaceStorageV1CSIDriver = RequestBodies.io$k8s$api$storage$v1$CSIDriver.Content; export interface Response$replaceStorageV1CSIDriver$Status$200 { @@ -30157,8 +30157,6 @@ export interface Response$replaceStorageV1CSIDriver$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSIDriver; } export interface Parameter$deleteStorageV1CSIDriver { - /** name of the CSIDriver */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -30169,6 +30167,8 @@ export interface Parameter$deleteStorageV1CSIDriver { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the CSIDriver */ + name: string; } export type RequestBody$deleteStorageV1CSIDriver = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteStorageV1CSIDriver$Status$200 { @@ -30182,8 +30182,6 @@ export interface Response$deleteStorageV1CSIDriver$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSIDriver; } export interface Parameter$patchStorageV1CSIDriver { - /** name of the CSIDriver */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -30192,6 +30190,8 @@ export interface Parameter$patchStorageV1CSIDriver { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the CSIDriver */ + name: string; } export type RequestBody$patchStorageV1CSIDriver = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchStorageV1CSIDriver$Status$200 { @@ -30301,14 +30301,14 @@ export interface Response$deleteStorageV1CollectionCSINode$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readStorageV1CSINode { - /** name of the CSINode */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the CSINode */ + name: string; } export interface Response$readStorageV1CSINode$Status$200 { "application/json": Schemas.io$k8s$api$storage$v1$CSINode; @@ -30316,14 +30316,14 @@ export interface Response$readStorageV1CSINode$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSINode; } export interface Parameter$replaceStorageV1CSINode { - /** name of the CSINode */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the CSINode */ + name: string; } export type RequestBody$replaceStorageV1CSINode = RequestBodies.io$k8s$api$storage$v1$CSINode.Content; export interface Response$replaceStorageV1CSINode$Status$200 { @@ -30337,8 +30337,6 @@ export interface Response$replaceStorageV1CSINode$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSINode; } export interface Parameter$deleteStorageV1CSINode { - /** name of the CSINode */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -30349,6 +30347,8 @@ export interface Parameter$deleteStorageV1CSINode { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the CSINode */ + name: string; } export type RequestBody$deleteStorageV1CSINode = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteStorageV1CSINode$Status$200 { @@ -30362,8 +30362,6 @@ export interface Response$deleteStorageV1CSINode$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSINode; } export interface Parameter$patchStorageV1CSINode { - /** name of the CSINode */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -30372,6 +30370,8 @@ export interface Parameter$patchStorageV1CSINode { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the CSINode */ + name: string; } export type RequestBody$patchStorageV1CSINode = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchStorageV1CSINode$Status$200 { @@ -30481,14 +30481,14 @@ export interface Response$deleteStorageV1CollectionStorageClass$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readStorageV1StorageClass { - /** name of the StorageClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the StorageClass */ + name: string; } export interface Response$readStorageV1StorageClass$Status$200 { "application/json": Schemas.io$k8s$api$storage$v1$StorageClass; @@ -30496,14 +30496,14 @@ export interface Response$readStorageV1StorageClass$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$StorageClass; } export interface Parameter$replaceStorageV1StorageClass { - /** name of the StorageClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the StorageClass */ + name: string; } export type RequestBody$replaceStorageV1StorageClass = RequestBodies.io$k8s$api$storage$v1$StorageClass.Content; export interface Response$replaceStorageV1StorageClass$Status$200 { @@ -30517,8 +30517,6 @@ export interface Response$replaceStorageV1StorageClass$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$StorageClass; } export interface Parameter$deleteStorageV1StorageClass { - /** name of the StorageClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -30529,6 +30527,8 @@ export interface Parameter$deleteStorageV1StorageClass { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the StorageClass */ + name: string; } export type RequestBody$deleteStorageV1StorageClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteStorageV1StorageClass$Status$200 { @@ -30542,8 +30542,6 @@ export interface Response$deleteStorageV1StorageClass$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$StorageClass; } export interface Parameter$patchStorageV1StorageClass { - /** name of the StorageClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -30552,6 +30550,8 @@ export interface Parameter$patchStorageV1StorageClass { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the StorageClass */ + name: string; } export type RequestBody$patchStorageV1StorageClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchStorageV1StorageClass$Status$200 { @@ -30661,14 +30661,14 @@ export interface Response$deleteStorageV1CollectionVolumeAttachment$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readStorageV1VolumeAttachment { - /** name of the VolumeAttachment */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the VolumeAttachment */ + name: string; } export interface Response$readStorageV1VolumeAttachment$Status$200 { "application/json": Schemas.io$k8s$api$storage$v1$VolumeAttachment; @@ -30676,14 +30676,14 @@ export interface Response$readStorageV1VolumeAttachment$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$VolumeAttachment; } export interface Parameter$replaceStorageV1VolumeAttachment { - /** name of the VolumeAttachment */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the VolumeAttachment */ + name: string; } export type RequestBody$replaceStorageV1VolumeAttachment = RequestBodies.io$k8s$api$storage$v1$VolumeAttachment.Content; export interface Response$replaceStorageV1VolumeAttachment$Status$200 { @@ -30697,8 +30697,6 @@ export interface Response$replaceStorageV1VolumeAttachment$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$VolumeAttachment; } export interface Parameter$deleteStorageV1VolumeAttachment { - /** name of the VolumeAttachment */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -30709,6 +30707,8 @@ export interface Parameter$deleteStorageV1VolumeAttachment { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the VolumeAttachment */ + name: string; } export type RequestBody$deleteStorageV1VolumeAttachment = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteStorageV1VolumeAttachment$Status$200 { @@ -30722,8 +30722,6 @@ export interface Response$deleteStorageV1VolumeAttachment$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$VolumeAttachment; } export interface Parameter$patchStorageV1VolumeAttachment { - /** name of the VolumeAttachment */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -30732,6 +30730,8 @@ export interface Parameter$patchStorageV1VolumeAttachment { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the VolumeAttachment */ + name: string; } export type RequestBody$patchStorageV1VolumeAttachment = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchStorageV1VolumeAttachment$Status$200 { @@ -30740,10 +30740,10 @@ export interface Response$patchStorageV1VolumeAttachment$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$VolumeAttachment; } export interface Parameter$readStorageV1VolumeAttachmentStatus { - /** name of the VolumeAttachment */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; + /** name of the VolumeAttachment */ + name: string; } export interface Response$readStorageV1VolumeAttachmentStatus$Status$200 { "application/json": Schemas.io$k8s$api$storage$v1$VolumeAttachment; @@ -30751,14 +30751,14 @@ export interface Response$readStorageV1VolumeAttachmentStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$VolumeAttachment; } export interface Parameter$replaceStorageV1VolumeAttachmentStatus { - /** name of the VolumeAttachment */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the VolumeAttachment */ + name: string; } export type RequestBody$replaceStorageV1VolumeAttachmentStatus = RequestBodies.io$k8s$api$storage$v1$VolumeAttachment.Content; export interface Response$replaceStorageV1VolumeAttachmentStatus$Status$200 { @@ -30772,8 +30772,6 @@ export interface Response$replaceStorageV1VolumeAttachmentStatus$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$VolumeAttachment; } export interface Parameter$patchStorageV1VolumeAttachmentStatus { - /** name of the VolumeAttachment */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -30782,6 +30780,8 @@ export interface Parameter$patchStorageV1VolumeAttachmentStatus { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the VolumeAttachment */ + name: string; } export type RequestBody$patchStorageV1VolumeAttachmentStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchStorageV1VolumeAttachmentStatus$Status$200 { @@ -30843,8 +30843,6 @@ export interface Parameter$watchStorageV1CSIDriver { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the CSIDriver */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -30853,6 +30851,8 @@ export interface Parameter$watchStorageV1CSIDriver { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the CSIDriver */ + name: string; } export interface Response$watchStorageV1CSIDriver$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -30915,8 +30915,6 @@ export interface Parameter$watchStorageV1CSINode { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the CSINode */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -30925,6 +30923,8 @@ export interface Parameter$watchStorageV1CSINode { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the CSINode */ + name: string; } export interface Response$watchStorageV1CSINode$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -30987,8 +30987,6 @@ export interface Parameter$watchStorageV1StorageClass { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the StorageClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -30997,6 +30995,8 @@ export interface Parameter$watchStorageV1StorageClass { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the StorageClass */ + name: string; } export interface Response$watchStorageV1StorageClass$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -31059,8 +31059,6 @@ export interface Parameter$watchStorageV1VolumeAttachment { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the VolumeAttachment */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -31069,6 +31067,8 @@ export interface Parameter$watchStorageV1VolumeAttachment { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the VolumeAttachment */ + name: string; } export interface Response$watchStorageV1VolumeAttachment$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -31184,14 +31184,14 @@ export interface Response$deleteStorageV1alpha1CollectionVolumeAttachment$Status "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readStorageV1alpha1VolumeAttachment { - /** name of the VolumeAttachment */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the VolumeAttachment */ + name: string; } export interface Response$readStorageV1alpha1VolumeAttachment$Status$200 { "application/json": Schemas.io$k8s$api$storage$v1alpha1$VolumeAttachment; @@ -31199,14 +31199,14 @@ export interface Response$readStorageV1alpha1VolumeAttachment$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1alpha1$VolumeAttachment; } export interface Parameter$replaceStorageV1alpha1VolumeAttachment { - /** name of the VolumeAttachment */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the VolumeAttachment */ + name: string; } export type RequestBody$replaceStorageV1alpha1VolumeAttachment = RequestBodies.io$k8s$api$storage$v1alpha1$VolumeAttachment.Content; export interface Response$replaceStorageV1alpha1VolumeAttachment$Status$200 { @@ -31220,8 +31220,6 @@ export interface Response$replaceStorageV1alpha1VolumeAttachment$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1alpha1$VolumeAttachment; } export interface Parameter$deleteStorageV1alpha1VolumeAttachment { - /** name of the VolumeAttachment */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -31232,6 +31230,8 @@ export interface Parameter$deleteStorageV1alpha1VolumeAttachment { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the VolumeAttachment */ + name: string; } export type RequestBody$deleteStorageV1alpha1VolumeAttachment = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteStorageV1alpha1VolumeAttachment$Status$200 { @@ -31245,8 +31245,6 @@ export interface Response$deleteStorageV1alpha1VolumeAttachment$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1alpha1$VolumeAttachment; } export interface Parameter$patchStorageV1alpha1VolumeAttachment { - /** name of the VolumeAttachment */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -31255,6 +31253,8 @@ export interface Parameter$patchStorageV1alpha1VolumeAttachment { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the VolumeAttachment */ + name: string; } export type RequestBody$patchStorageV1alpha1VolumeAttachment = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchStorageV1alpha1VolumeAttachment$Status$200 { @@ -31316,8 +31316,6 @@ export interface Parameter$watchStorageV1alpha1VolumeAttachment { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the VolumeAttachment */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -31326,6 +31324,8 @@ export interface Parameter$watchStorageV1alpha1VolumeAttachment { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the VolumeAttachment */ + name: string; } export interface Response$watchStorageV1alpha1VolumeAttachment$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -31441,14 +31441,14 @@ export interface Response$deleteStorageV1beta1CollectionCSIDriver$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readStorageV1beta1CSIDriver { - /** name of the CSIDriver */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the CSIDriver */ + name: string; } export interface Response$readStorageV1beta1CSIDriver$Status$200 { "application/json": Schemas.io$k8s$api$storage$v1beta1$CSIDriver; @@ -31456,14 +31456,14 @@ export interface Response$readStorageV1beta1CSIDriver$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1beta1$CSIDriver; } export interface Parameter$replaceStorageV1beta1CSIDriver { - /** name of the CSIDriver */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the CSIDriver */ + name: string; } export type RequestBody$replaceStorageV1beta1CSIDriver = RequestBodies.io$k8s$api$storage$v1beta1$CSIDriver.Content; export interface Response$replaceStorageV1beta1CSIDriver$Status$200 { @@ -31477,8 +31477,6 @@ export interface Response$replaceStorageV1beta1CSIDriver$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1beta1$CSIDriver; } export interface Parameter$deleteStorageV1beta1CSIDriver { - /** name of the CSIDriver */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -31489,6 +31487,8 @@ export interface Parameter$deleteStorageV1beta1CSIDriver { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the CSIDriver */ + name: string; } export type RequestBody$deleteStorageV1beta1CSIDriver = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteStorageV1beta1CSIDriver$Status$200 { @@ -31502,8 +31502,6 @@ export interface Response$deleteStorageV1beta1CSIDriver$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1beta1$CSIDriver; } export interface Parameter$patchStorageV1beta1CSIDriver { - /** name of the CSIDriver */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -31512,6 +31510,8 @@ export interface Parameter$patchStorageV1beta1CSIDriver { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the CSIDriver */ + name: string; } export type RequestBody$patchStorageV1beta1CSIDriver = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchStorageV1beta1CSIDriver$Status$200 { @@ -31621,14 +31621,14 @@ export interface Response$deleteStorageV1beta1CollectionCSINode$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readStorageV1beta1CSINode { - /** name of the CSINode */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the CSINode */ + name: string; } export interface Response$readStorageV1beta1CSINode$Status$200 { "application/json": Schemas.io$k8s$api$storage$v1beta1$CSINode; @@ -31636,14 +31636,14 @@ export interface Response$readStorageV1beta1CSINode$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1beta1$CSINode; } export interface Parameter$replaceStorageV1beta1CSINode { - /** name of the CSINode */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the CSINode */ + name: string; } export type RequestBody$replaceStorageV1beta1CSINode = RequestBodies.io$k8s$api$storage$v1beta1$CSINode.Content; export interface Response$replaceStorageV1beta1CSINode$Status$200 { @@ -31657,8 +31657,6 @@ export interface Response$replaceStorageV1beta1CSINode$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1beta1$CSINode; } export interface Parameter$deleteStorageV1beta1CSINode { - /** name of the CSINode */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -31669,6 +31667,8 @@ export interface Parameter$deleteStorageV1beta1CSINode { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the CSINode */ + name: string; } export type RequestBody$deleteStorageV1beta1CSINode = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteStorageV1beta1CSINode$Status$200 { @@ -31682,8 +31682,6 @@ export interface Response$deleteStorageV1beta1CSINode$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1beta1$CSINode; } export interface Parameter$patchStorageV1beta1CSINode { - /** name of the CSINode */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -31692,6 +31690,8 @@ export interface Parameter$patchStorageV1beta1CSINode { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the CSINode */ + name: string; } export type RequestBody$patchStorageV1beta1CSINode = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchStorageV1beta1CSINode$Status$200 { @@ -31801,14 +31801,14 @@ export interface Response$deleteStorageV1beta1CollectionStorageClass$Status$200 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readStorageV1beta1StorageClass { - /** name of the StorageClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the StorageClass */ + name: string; } export interface Response$readStorageV1beta1StorageClass$Status$200 { "application/json": Schemas.io$k8s$api$storage$v1beta1$StorageClass; @@ -31816,14 +31816,14 @@ export interface Response$readStorageV1beta1StorageClass$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1beta1$StorageClass; } export interface Parameter$replaceStorageV1beta1StorageClass { - /** name of the StorageClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the StorageClass */ + name: string; } export type RequestBody$replaceStorageV1beta1StorageClass = RequestBodies.io$k8s$api$storage$v1beta1$StorageClass.Content; export interface Response$replaceStorageV1beta1StorageClass$Status$200 { @@ -31837,8 +31837,6 @@ export interface Response$replaceStorageV1beta1StorageClass$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1beta1$StorageClass; } export interface Parameter$deleteStorageV1beta1StorageClass { - /** name of the StorageClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -31849,6 +31847,8 @@ export interface Parameter$deleteStorageV1beta1StorageClass { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the StorageClass */ + name: string; } export type RequestBody$deleteStorageV1beta1StorageClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteStorageV1beta1StorageClass$Status$200 { @@ -31862,8 +31862,6 @@ export interface Response$deleteStorageV1beta1StorageClass$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1beta1$StorageClass; } export interface Parameter$patchStorageV1beta1StorageClass { - /** name of the StorageClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -31872,6 +31870,8 @@ export interface Parameter$patchStorageV1beta1StorageClass { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the StorageClass */ + name: string; } export type RequestBody$patchStorageV1beta1StorageClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchStorageV1beta1StorageClass$Status$200 { @@ -31981,14 +31981,14 @@ export interface Response$deleteStorageV1beta1CollectionVolumeAttachment$Status$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readStorageV1beta1VolumeAttachment { - /** name of the VolumeAttachment */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18. */ exact?: boolean; /** Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18. */ export?: boolean; + /** name of the VolumeAttachment */ + name: string; } export interface Response$readStorageV1beta1VolumeAttachment$Status$200 { "application/json": Schemas.io$k8s$api$storage$v1beta1$VolumeAttachment; @@ -31996,14 +31996,14 @@ export interface Response$readStorageV1beta1VolumeAttachment$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1beta1$VolumeAttachment; } export interface Parameter$replaceStorageV1beta1VolumeAttachment { - /** name of the VolumeAttachment */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ dryRun?: string; /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ fieldManager?: string; + /** name of the VolumeAttachment */ + name: string; } export type RequestBody$replaceStorageV1beta1VolumeAttachment = RequestBodies.io$k8s$api$storage$v1beta1$VolumeAttachment.Content; export interface Response$replaceStorageV1beta1VolumeAttachment$Status$200 { @@ -32017,8 +32017,6 @@ export interface Response$replaceStorageV1beta1VolumeAttachment$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1beta1$VolumeAttachment; } export interface Parameter$deleteStorageV1beta1VolumeAttachment { - /** name of the VolumeAttachment */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -32029,6 +32027,8 @@ export interface Parameter$deleteStorageV1beta1VolumeAttachment { orphanDependents?: boolean; /** 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. */ propagationPolicy?: string; + /** name of the VolumeAttachment */ + name: string; } export type RequestBody$deleteStorageV1beta1VolumeAttachment = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteStorageV1beta1VolumeAttachment$Status$200 { @@ -32042,8 +32042,6 @@ export interface Response$deleteStorageV1beta1VolumeAttachment$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1beta1$VolumeAttachment; } export interface Parameter$patchStorageV1beta1VolumeAttachment { - /** name of the VolumeAttachment */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: 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 */ @@ -32052,6 +32050,8 @@ export interface Parameter$patchStorageV1beta1VolumeAttachment { fieldManager?: string; /** Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. */ force?: boolean; + /** name of the VolumeAttachment */ + name: string; } export type RequestBody$patchStorageV1beta1VolumeAttachment = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchStorageV1beta1VolumeAttachment$Status$200 { @@ -32113,8 +32113,6 @@ export interface Parameter$watchStorageV1beta1CSIDriver { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the CSIDriver */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -32123,6 +32121,8 @@ export interface Parameter$watchStorageV1beta1CSIDriver { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the CSIDriver */ + name: string; } export interface Response$watchStorageV1beta1CSIDriver$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -32185,8 +32185,6 @@ export interface Parameter$watchStorageV1beta1CSINode { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the CSINode */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -32195,6 +32193,8 @@ export interface Parameter$watchStorageV1beta1CSINode { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the CSINode */ + name: string; } export interface Response$watchStorageV1beta1CSINode$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -32257,8 +32257,6 @@ export interface Parameter$watchStorageV1beta1StorageClass { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the StorageClass */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -32267,6 +32265,8 @@ export interface Parameter$watchStorageV1beta1StorageClass { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the StorageClass */ + name: string; } export interface Response$watchStorageV1beta1StorageClass$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -32329,8 +32329,6 @@ export interface Parameter$watchStorageV1beta1VolumeAttachment { * The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. */ limit?: number; - /** name of the VolumeAttachment */ - name: string; /** If 'true', then the output is pretty printed. */ pretty?: string; /** When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. */ @@ -32339,6 +32337,8 @@ export interface Parameter$watchStorageV1beta1VolumeAttachment { timeoutSeconds?: number; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: boolean; + /** name of the VolumeAttachment */ + name: string; } export interface Response$watchStorageV1beta1VolumeAttachment$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; diff --git a/test/__tests__/functional/__snapshots__/spit-code-test.ts.snap b/test/__tests__/functional/__snapshots__/spit-code-test.ts.snap index 50e02bc..137125c 100644 --- a/test/__tests__/functional/__snapshots__/spit-code-test.ts.snap +++ b/test/__tests__/functional/__snapshots__/spit-code-test.ts.snap @@ -48,8 +48,8 @@ export interface Response$getReferenceItems$Status$200 { }; } export interface Parameter$searchBook { - "book.name": string; "from.publishedAt"?: number; + "book.name": string; } export interface Response$searchBook$Status$200 { "application/json": { diff --git a/test/__tests__/functional/__snapshots__/typedef-with-template-test.ts.snap b/test/__tests__/functional/__snapshots__/typedef-with-template-test.ts.snap index d4c6e2e..b02f049 100644 --- a/test/__tests__/functional/__snapshots__/typedef-with-template-test.ts.snap +++ b/test/__tests__/functional/__snapshots__/typedef-with-template-test.ts.snap @@ -334,8 +334,8 @@ export interface Response$getReferenceItems$Status$200 { }; } export interface Parameter$searchBook { - "book.name": string; "from.publishedAt"?: number; + "book.name": string; } export interface Response$searchBook$Status$200 { "application/json": { @@ -1010,8 +1010,8 @@ export interface Response$getReferenceItems$Status$200 { }; } export interface Parameter$searchBook { - "book.name": string; "from.publishedAt"?: number; + "book.name": string; } export interface Response$searchBook$Status$200 { "application/json": { @@ -1774,20 +1774,20 @@ export interface Response$getItemById$Status$200 { }; } export interface Parameter$getNodeProxyWithPath { + path: string; name: string; - path?: string; } export interface Response$getNodeProxyWithPath$Status$200 { "application/json": string; } export interface Parameter$headNodeProxyWithPath { + path: string; name: string; - path?: string; } export interface Parameter$getUserPost { + include?: string; userId: string; postId: number; - include?: string; } export interface Response$getUserPost$Status$200 { "application/json": { From 7651715aab2988b23ec2d293ccadf82fc36b83ea Mon Sep 17 00:00:00 2001 From: "K.Himeno" <6715229+Himenon@users.noreply.github.com> Date: Wed, 27 May 2026 08:47:45 +0900 Subject: [PATCH 3/4] refactor: remove path parameter normalization from generateValidRootSchema The normalization that forced required: true on path parameters in generateValidRootSchema was not needed for correct TypeScript type generation. Parameter.ts already handles this via isPathProperty in generatePropertySignatureObject, which always produces a required property for path parameters regardless of the required field in the spec. Remove normalizePathParameters and its unit tests, keeping generateValidRootSchema minimal. Update parameter.json snapshots to reflect the absence of the injected required: true field (TypeScript interface output is unchanged). Co-Authored-By: Claude Sonnet 4.6 --- src/__tests__/generateValidRootSchema.test.ts | 170 ------------------ src/generateValidRootSchema.ts | 42 ++--- .../__snapshots__/parameter-test.ts.snap | 42 ++--- .../__snapshots__/parameter-test.ts.snap | 42 ++--- 4 files changed, 41 insertions(+), 255 deletions(-) delete mode 100644 src/__tests__/generateValidRootSchema.test.ts diff --git a/src/__tests__/generateValidRootSchema.test.ts b/src/__tests__/generateValidRootSchema.test.ts deleted file mode 100644 index af4d473..0000000 --- a/src/__tests__/generateValidRootSchema.test.ts +++ /dev/null @@ -1,170 +0,0 @@ -import assert from "node:assert"; -import { describe, expect, it } from "vitest"; -import { generateValidRootSchema } from "../generateValidRootSchema"; -import type * as Types from "../types"; - -describe("generateValidRootSchema", () => { - describe("パスパラメータの required 正規化", () => { - it("paths 直下のオペレーションに定義されたパスパラメータで required を省略した場合、required: true が設定されること", () => { - const input: Types.OpenApi.Document = { - openapi: "3.1.0", - info: { title: "test", version: "1.0.0", summary: "", description: "", termsOfService: "" }, - paths: { - "/items/{id}": { - get: { - operationId: "getItemById", - parameters: [ - { - in: "path", - name: "id", - required: false, - schema: { type: "string" }, - }, - ], - responses: { default: { description: "default" } }, - }, - }, - }, - }; - - const result = generateValidRootSchema(input); - - const paths = result.paths; - assert(paths); - const pathItem = paths["/items/{id}"]; - assert(pathItem); - const parameters = pathItem.get?.parameters; - assert(parameters); - const parameter = parameters[0] as Types.OpenApi.Parameter; - expect(parameter.required).toBe(true); - }); - - it("paths 直下のオペレーションに定義されたパスパラメータで required を省略した場合でも required: true が設定されること", () => { - const input: Types.OpenApi.Document = { - openapi: "3.1.0", - info: { title: "test", version: "1.0.0", summary: "", description: "", termsOfService: "" }, - paths: { - "/items/{id}": { - get: { - operationId: "getItemById", - // required フィールド自体を省略 - parameters: [{ in: "path", name: "id", required: undefined as unknown as boolean, schema: { type: "string" } }], - responses: { default: { description: "default" } }, - }, - }, - }, - }; - - const result = generateValidRootSchema(input); - - const paths = result.paths; - assert(paths); - const pathItem = paths["/items/{id}"]; - assert(pathItem); - const parameters = pathItem.get?.parameters; - assert(parameters); - const parameter = parameters[0] as Types.OpenApi.Parameter; - expect(parameter.required).toBe(true); - }); - - it("PathItem レベルのパスパラメータで required を省略した場合、required: true が設定されること", () => { - const input: Types.OpenApi.Document = { - openapi: "3.1.0", - info: { title: "test", version: "1.0.0", summary: "", description: "", termsOfService: "" }, - paths: { - "/items/{id}": { - parameters: [{ in: "path", name: "id", required: false, schema: { type: "string" } }], - get: { - operationId: "getItemById", - responses: { default: { description: "default" } }, - }, - }, - }, - }; - - const result = generateValidRootSchema(input); - - const paths = result.paths; - assert(paths); - const pathItem = paths["/items/{id}"]; - assert(pathItem); - const parameters = pathItem.parameters; - assert(parameters); - const parameter = parameters[0] as Types.OpenApi.Parameter; - expect(parameter.required).toBe(true); - }); - - it("components.parameters に定義されたパスパラメータで required を省略した場合、required: true が設定されること", () => { - const input: Types.OpenApi.Document = { - openapi: "3.1.0", - info: { title: "test", version: "1.0.0", summary: "", description: "", termsOfService: "" }, - components: { - parameters: { - ItemId: { in: "path", name: "id", required: false, schema: { type: "string" } }, - }, - }, - }; - - const result = generateValidRootSchema(input); - - const componentsParameters = result.components?.parameters; - assert(componentsParameters); - const parameter = componentsParameters.ItemId as Types.OpenApi.Parameter; - expect(parameter.required).toBe(true); - }); - - it("クエリパラメータで required を省略した場合、required フィールドは変更されないこと", () => { - const input: Types.OpenApi.Document = { - openapi: "3.1.0", - info: { title: "test", version: "1.0.0", summary: "", description: "", termsOfService: "" }, - paths: { - "/items": { - get: { - operationId: "getItems", - parameters: [{ in: "query", name: "filter", required: false, schema: { type: "string" } }], - responses: { default: { description: "default" } }, - }, - }, - }, - }; - - const result = generateValidRootSchema(input); - - const paths = result.paths; - assert(paths); - const pathItem = paths["/items"]; - assert(pathItem); - const parameters = pathItem.get?.parameters; - assert(parameters); - const parameter = parameters[0] as Types.OpenApi.Parameter; - expect(parameter.required).toBe(false); - }); - - it("パスパラメータと明示的に required: true が設定されている場合、その値が維持されること", () => { - const input: Types.OpenApi.Document = { - openapi: "3.1.0", - info: { title: "test", version: "1.0.0", summary: "", description: "", termsOfService: "" }, - paths: { - "/items/{id}": { - get: { - operationId: "getItemById", - parameters: [{ in: "path", name: "id", required: true, schema: { type: "string" } }], - responses: { default: { description: "default" } }, - }, - }, - }, - }; - - const result = generateValidRootSchema(input); - - const paths = result.paths; - assert(paths); - const pathItem = paths["/items/{id}"]; - assert(pathItem); - const parameters = pathItem.get?.parameters; - assert(parameters); - const parameter = parameters[0] as Types.OpenApi.Parameter; - expect(parameter.required).toBe(true); - }); - }); -}); diff --git a/src/generateValidRootSchema.ts b/src/generateValidRootSchema.ts index b230ba2..45b27bc 100644 --- a/src/generateValidRootSchema.ts +++ b/src/generateValidRootSchema.ts @@ -1,36 +1,22 @@ import type * as Types from "./types"; -const normalizePathParameters = (parameters: (Types.OpenApi.Parameter | Types.OpenApi.Reference)[] | undefined): void => { - if (!parameters) { - return; - } - for (const parameter of parameters) { - if ("$ref" in parameter) { - continue; - } - // OpenAPI 3.x spec §3.3.2: path パラメータは常に required: true - if (parameter.in === "path") { - parameter.required = true; - } - } -}; - export const generateValidRootSchema = (input: Types.OpenApi.Document): Types.OpenApi.Document => { - if (input.components?.parameters) { - normalizePathParameters(Object.values(input.components.parameters)); - } - if (!input.paths) { return input; } - - const httpMethods = ["get", "put", "post", "delete", "options", "head", "patch", "trace"] as const; - - for (const [path, pathItem] of Object.entries(input.paths)) { - normalizePathParameters(pathItem.parameters); - - for (const method of httpMethods) { - const operation = pathItem[method]; + /** update undefined operation id */ + for (const [path, methods] of Object.entries(input.paths || {})) { + const targets = { + get: methods.get, + put: methods.put, + post: methods.post, + delete: methods.delete, + options: methods.options, + head: methods.head, + patch: methods.patch, + trace: methods.trace, + } satisfies Record; + for (const [method, operation] of Object.entries(targets)) { if (!operation) { continue; } @@ -41,9 +27,7 @@ export const generateValidRootSchema = (input: Types.OpenApi.Document): Types.Op if (!operation.operationId) { operation.operationId = `${method.toLowerCase()}${path.charAt(0).toUpperCase() + path.slice(1)}`; } - normalizePathParameters(operation.parameters); } } - return input; }; diff --git a/test/__tests__/class/__snapshots__/parameter-test.ts.snap b/test/__tests__/class/__snapshots__/parameter-test.ts.snap index dc69f67..52aa70e 100644 --- a/test/__tests__/class/__snapshots__/parameter-test.ts.snap +++ b/test/__tests__/class/__snapshots__/parameter-test.ts.snap @@ -689,8 +689,7 @@ exports[`Parameter > required フィールドを省略したパスパラメー "pickedParameters": [ { "name": "id", - "in": "path", - "required": true + "in": "path" } ], "requestContentTypes": [], @@ -720,8 +719,7 @@ exports[`Parameter > required フィールドを省略したパスパラメー "name": "id", "schema": { "type": "string" - }, - "required": true + } } ], "responses": { @@ -761,13 +759,11 @@ exports[`Parameter > required フィールドを省略したパスパラメー "pickedParameters": [ { "name": "name", - "in": "path", - "required": true + "in": "path" }, { "name": "path", - "in": "path", - "required": true + "in": "path" }, { "name": "path", @@ -801,16 +797,14 @@ exports[`Parameter > required フィールドを省略したパスパラメー "name": "name", "schema": { "type": "string" - }, - "required": true + } }, { "in": "path", "name": "path", "schema": { "type": "string" - }, - "required": true + } }, { "in": "query", @@ -849,13 +843,11 @@ exports[`Parameter > required フィールドを省略したパスパラメー "pickedParameters": [ { "name": "name", - "in": "path", - "required": true + "in": "path" }, { "name": "path", - "in": "path", - "required": true + "in": "path" }, { "name": "path", @@ -883,16 +875,14 @@ exports[`Parameter > required フィールドを省略したパスパラメー "name": "name", "schema": { "type": "string" - }, - "required": true + } }, { "in": "path", "name": "path", "schema": { "type": "string" - }, - "required": true + } }, { "in": "query", @@ -924,13 +914,11 @@ exports[`Parameter > required フィールドを省略したパスパラメー "pickedParameters": [ { "name": "userId", - "in": "path", - "required": true + "in": "path" }, { "name": "postId", - "in": "path", - "required": true + "in": "path" }, { "name": "include", @@ -964,16 +952,14 @@ exports[`Parameter > required フィールドを省略したパスパラメー "name": "userId", "schema": { "type": "string" - }, - "required": true + } }, { "in": "path", "name": "postId", "schema": { "type": "integer" - }, - "required": true + } }, { "in": "query", diff --git a/test/__tests__/functional/__snapshots__/parameter-test.ts.snap b/test/__tests__/functional/__snapshots__/parameter-test.ts.snap index dc69f67..52aa70e 100644 --- a/test/__tests__/functional/__snapshots__/parameter-test.ts.snap +++ b/test/__tests__/functional/__snapshots__/parameter-test.ts.snap @@ -689,8 +689,7 @@ exports[`Parameter > required フィールドを省略したパスパラメー "pickedParameters": [ { "name": "id", - "in": "path", - "required": true + "in": "path" } ], "requestContentTypes": [], @@ -720,8 +719,7 @@ exports[`Parameter > required フィールドを省略したパスパラメー "name": "id", "schema": { "type": "string" - }, - "required": true + } } ], "responses": { @@ -761,13 +759,11 @@ exports[`Parameter > required フィールドを省略したパスパラメー "pickedParameters": [ { "name": "name", - "in": "path", - "required": true + "in": "path" }, { "name": "path", - "in": "path", - "required": true + "in": "path" }, { "name": "path", @@ -801,16 +797,14 @@ exports[`Parameter > required フィールドを省略したパスパラメー "name": "name", "schema": { "type": "string" - }, - "required": true + } }, { "in": "path", "name": "path", "schema": { "type": "string" - }, - "required": true + } }, { "in": "query", @@ -849,13 +843,11 @@ exports[`Parameter > required フィールドを省略したパスパラメー "pickedParameters": [ { "name": "name", - "in": "path", - "required": true + "in": "path" }, { "name": "path", - "in": "path", - "required": true + "in": "path" }, { "name": "path", @@ -883,16 +875,14 @@ exports[`Parameter > required フィールドを省略したパスパラメー "name": "name", "schema": { "type": "string" - }, - "required": true + } }, { "in": "path", "name": "path", "schema": { "type": "string" - }, - "required": true + } }, { "in": "query", @@ -924,13 +914,11 @@ exports[`Parameter > required フィールドを省略したパスパラメー "pickedParameters": [ { "name": "userId", - "in": "path", - "required": true + "in": "path" }, { "name": "postId", - "in": "path", - "required": true + "in": "path" }, { "name": "include", @@ -964,16 +952,14 @@ exports[`Parameter > required フィールドを省略したパスパラメー "name": "userId", "schema": { "type": "string" - }, - "required": true + } }, { "in": "path", "name": "postId", "schema": { "type": "integer" - }, - "required": true + } }, { "in": "query", From 0a5b3b1254a4801849add12a29c498c908f4b617 Mon Sep 17 00:00:00 2001 From: "K.Himeno" <6715229+Himenon@users.noreply.github.com> Date: Wed, 27 May 2026 08:51:54 +0900 Subject: [PATCH 4/4] fix: resolve noTemplateCurlyInString and useTemplate lint warnings in test files - PathParameter-test.ts: extract p() and tpl() helpers to build expected template literal strings without embedding raw \${...} in regular string literals - factory.test.ts: add biome-ignore for the line that intentionally tests escaping of template literal placeholders Co-Authored-By: Claude Sonnet 4.6 --- .../__tests__/PathParameter-test.ts | 50 ++++++++++--------- .../TsGenerator/__tests__/factory.test.ts | 1 + 2 files changed, 28 insertions(+), 23 deletions(-) diff --git a/src/code-templates/_shared/MethodBody/__tests__/PathParameter-test.ts b/src/code-templates/_shared/MethodBody/__tests__/PathParameter-test.ts index 167f6e3..7a82f10 100644 --- a/src/code-templates/_shared/MethodBody/__tests__/PathParameter-test.ts +++ b/src/code-templates/_shared/MethodBody/__tests__/PathParameter-test.ts @@ -5,6 +5,12 @@ import type { CodeGenerator } from "../../../../types"; import * as Utils from "../../utils"; import * as PathParameter from "../PathParameter"; +// テンプレートリテラル式の文字列表現を組み立てるヘルパー。 +// "$" を分離して結合することで noTemplateCurlyInString を回避している。 +// biome-ignore lint/style/useTemplate: "$" + template is intentional to prevent noTemplateCurlyInString +const p = (name: string): string => "$" + `{encodeURIComponent(params.parameter.${name})}`; +const tpl = (...parts: string[]): string => `\`${parts.join("")}\``; + describe("PathParameter Test", () => { const factory = TsGenerator.Factory.create(); const generate = (url: string, pathParameter: CodeGenerator.PickedParameter[]): string => { @@ -12,23 +18,21 @@ describe("PathParameter Test", () => { return Utils.generateTemplateExpression(factory, urlTemplates); }; test("generateUrlTemplateExpression", () => { - expect(generate("/{a}", [{ in: "path", name: "a", required: true }])).toEqual("`/${encodeURIComponent(params.parameter.a)}`"); - expect(generate("/{a}/", [{ in: "path", name: "a", required: true }])).toEqual("`/${encodeURIComponent(params.parameter.a)}/`"); - expect(generate("/a/{b}", [{ in: "path", name: "b", required: true }])).toEqual("`/a/${encodeURIComponent(params.parameter.b)}`"); - expect(generate("/a/{b}/", [{ in: "path", name: "b", required: true }])).toEqual("`/a/${encodeURIComponent(params.parameter.b)}/`"); - expect(generate("/a/{b}/c", [{ in: "path", name: "b", required: true }])).toEqual("`/a/${encodeURIComponent(params.parameter.b)}/c`"); - expect(generate("/a/{b}/c/", [{ in: "path", name: "b", required: true }])).toEqual("`/a/${encodeURIComponent(params.parameter.b)}/c/`"); - expect(generate("/a/b/{c}", [{ in: "path", name: "c", required: true }])).toEqual("`/a/b/${encodeURIComponent(params.parameter.c)}`"); - expect(generate("/a/b/{c}", [{ in: "path", name: "c", required: true }])).toEqual("`/a/b/${encodeURIComponent(params.parameter.c)}`"); - expect(generate("/a/b/{c}/", [{ in: "path", name: "c", required: true }])).toEqual("`/a/b/${encodeURIComponent(params.parameter.c)}/`"); - expect(generate("/a/b/{c}.json", [{ in: "path", name: "c", required: true }])).toEqual( - "`/a/b/${encodeURIComponent(params.parameter.c)}.json`", - ); + expect(generate("/{a}", [{ in: "path", name: "a", required: true }])).toEqual(tpl("/", p("a"))); + expect(generate("/{a}/", [{ in: "path", name: "a", required: true }])).toEqual(tpl("/", p("a"), "/")); + expect(generate("/a/{b}", [{ in: "path", name: "b", required: true }])).toEqual(tpl("/a/", p("b"))); + expect(generate("/a/{b}/", [{ in: "path", name: "b", required: true }])).toEqual(tpl("/a/", p("b"), "/")); + expect(generate("/a/{b}/c", [{ in: "path", name: "b", required: true }])).toEqual(tpl("/a/", p("b"), "/c")); + expect(generate("/a/{b}/c/", [{ in: "path", name: "b", required: true }])).toEqual(tpl("/a/", p("b"), "/c/")); + expect(generate("/a/b/{c}", [{ in: "path", name: "c", required: true }])).toEqual(tpl("/a/b/", p("c"))); + expect(generate("/a/b/{c}", [{ in: "path", name: "c", required: true }])).toEqual(tpl("/a/b/", p("c"))); + expect(generate("/a/b/{c}/", [{ in: "path", name: "c", required: true }])).toEqual(tpl("/a/b/", p("c"), "/")); + expect(generate("/a/b/{c}.json", [{ in: "path", name: "c", required: true }])).toEqual(tpl("/a/b/", p("c"), ".json")); expect(generate("/{a}.json/{a}.json/{a}.json", [{ in: "path", name: "a", required: true }])).toEqual( - "`/${encodeURIComponent(params.parameter.a)}.json/${encodeURIComponent(params.parameter.a)}.json/${encodeURIComponent(params.parameter.a)}.json`", + tpl("/", p("a"), ".json/", p("a"), ".json/", p("a"), ".json"), ); expect(generate("/.json.{a}.json/{a}.json.{a}", [{ in: "path", name: "a", required: true }])).toEqual( - "`/.json.${encodeURIComponent(params.parameter.a)}.json/${encodeURIComponent(params.parameter.a)}.json.${encodeURIComponent(params.parameter.a)}`", + tpl("/.json.", p("a"), ".json/", p("a"), ".json.", p("a")), ); expect( @@ -36,54 +40,54 @@ describe("PathParameter Test", () => { { in: "path", name: "a", required: true }, { in: "path", name: "b", required: true }, ]), - ).toBe("`/${encodeURIComponent(params.parameter.a)}/${encodeURIComponent(params.parameter.b)}`"); + ).toBe(tpl("/", p("a"), "/", p("b"))); expect( generate("/{a}/{b}/", [ { in: "path", name: "a", required: true }, { in: "path", name: "b", required: true }, ]), - ).toBe("`/${encodeURIComponent(params.parameter.a)}/${encodeURIComponent(params.parameter.b)}/`"); + ).toBe(tpl("/", p("a"), "/", p("b"), "/")); expect( generate("/{a}/{b}/c", [ { in: "path", name: "a", required: true }, { in: "path", name: "b", required: true }, ]), - ).toBe("`/${encodeURIComponent(params.parameter.a)}/${encodeURIComponent(params.parameter.b)}/c`"); + ).toBe(tpl("/", p("a"), "/", p("b"), "/c")); expect( generate("/{a}/{b}/c/", [ { in: "path", name: "a", required: true }, { in: "path", name: "b", required: true }, ]), - ).toBe("`/${encodeURIComponent(params.parameter.a)}/${encodeURIComponent(params.parameter.b)}/c/`"); + ).toBe(tpl("/", p("a"), "/", p("b"), "/c/")); expect( generate("/{a}/b/{c}", [ { in: "path", name: "a", required: true }, { in: "path", name: "c", required: true }, ]), - ).toBe("`/${encodeURIComponent(params.parameter.a)}/b/${encodeURIComponent(params.parameter.c)}`"); + ).toBe(tpl("/", p("a"), "/b/", p("c"))); expect( generate("/{a}/b/{c}/", [ { in: "path", name: "a", required: true }, { in: "path", name: "c", required: true }, ]), - ).toBe("`/${encodeURIComponent(params.parameter.a)}/b/${encodeURIComponent(params.parameter.c)}/`"); + ).toBe(tpl("/", p("a"), "/b/", p("c"), "/")); expect( generate("/a/{b}/{c}", [ { in: "path", name: "b", required: true }, { in: "path", name: "c", required: true }, ]), - ).toBe("`/a/${encodeURIComponent(params.parameter.b)}/${encodeURIComponent(params.parameter.c)}`"); + ).toBe(tpl("/a/", p("b"), "/", p("c"))); expect( generate("/a/{b}/{c}/", [ { in: "path", name: "b", required: true }, { in: "path", name: "c", required: true }, ]), - ).toBe("`/a/${encodeURIComponent(params.parameter.b)}/${encodeURIComponent(params.parameter.c)}/`"); + ).toBe(tpl("/a/", p("b"), "/", p("c"), "/")); expect( generate("/a/{b}...{c}/", [ { in: "path", name: "b", required: true }, { in: "path", name: "c", required: true }, ]), - ).toBe("`/a/${encodeURIComponent(params.parameter.b)}...${encodeURIComponent(params.parameter.c)}/`"); + ).toBe(tpl("/a/", p("b"), "...", p("c"), "/")); }); }); diff --git a/src/internal/TsGenerator/__tests__/factory.test.ts b/src/internal/TsGenerator/__tests__/factory.test.ts index f668fbe..a221c11 100644 --- a/src/internal/TsGenerator/__tests__/factory.test.ts +++ b/src/internal/TsGenerator/__tests__/factory.test.ts @@ -8,6 +8,7 @@ describe("TsGenerator Factory Helpers", () => { // バックスラッシュ、バッククォート、${ をエスケープする expect(Factory.escapeTemplateText("path\\to\\file")).toBe("path\\\\to\\\\file"); expect(Factory.escapeTemplateText("`quoted`")).toBe("\\`quoted\\`"); + // biome-ignore lint/suspicious/noTemplateCurlyInString: intentional - testing escaping of template literal placeholders expect(Factory.escapeTemplateText("${variable}")).toBe("\\${variable}"); }); });